$(document).ready(function(){

	// MOUSEOVER function
	
	$(".mouseover").hover(
	function() {
	$(this).stop().animate({"opacity": "0"}, "medium");
	},
	function() {
	$(this).stop().animate({"opacity": "1"}, "medium");
	});

	// EXPAND functions
	
	$(".expand").hover(
	function() {
	$(this).stop().animate({ width: "180px", height: "168px", top: "25px", left: "58px" }, 100);
	},
	function() {
	$(this).stop().animate({ width: "150px", height: "140px", top: "40px", left: "71px" }, 100);
	});
	
	$(".expand2").hover(
	function() {
	$(this).stop().animate({ width: "300px", height: "95px", top: "53px", left: "-4px" }, 100);
	},
	function() {
	$(this).stop().animate({ width: "270px", height: "85px", top: "60px", left: "11px" }, 100);
	});
	
});

