function makeMouseOver(which,w,h,l,t,d,ty){
	var d = 500;
	var ty = "swing";
	$(which).mouseover(function(){
		$(which).stop();
		$(which).animate({ 
		  	width:w,
			height:h,
			left:l,
			top:t}, d, ty, setZindex(which, "100"));
	});
}

function setZindex(which, i){ $(which).css("zIndex",i);}

function makeMouseOut(which,w,h,l,t,d,ty){
	 $(which).mouseout(function(){
	 	$(which).stop();
		$(which).animate({ 
		  	  	width:w,
				height:h,
				left:l,
				top:t}, d, ty, setZindex(which, "0"));
	});
}