$(document).ready(function() {
					  
	$('ul.rolloverteaser li').addClass("small");
	
	$('ul.rolloverteaser li:first-child').removeClass("small").addClass("big");
	
	$('ul.rolloverteaser li').mouseover(
		function(){
			$(this).siblings().addClass("small");
			$(this).removeClass("small").addClass("big");	
		}
	);
	
	$("ul.rolloverteaser li").click(
		function(){
			window.location=$(this).find("a").attr("href"); return false;
		}
	);
	$("ul.rolloverteaser li").mouseover(
		function(){
			$(this).css("cursor","pointer");
		}
	);
				
});