$(function() {

var imageHeight;

	



	
	/* ANIMATE IMAGE GALLERY */
	
	$("#images div").mouseenter(function(){
	
		imageHeight = ("img", this).height;
		
		imageHeight = imageHeight + 10;
		
		$(this).css("width","166px");
		$(this).css("height","113px");
		$("img", this).css("width","166px");
		$("img", this).css("height", imageHeight);
		$(this).css("margin","0px");

	
	});
	
	$("#images div").mouseout(function(){
		
		imageHeight = ("img", this).height;
		
		imageHeight = imageHeight - 10;
	
		$(this).css("width","156px");
		$(this).css("height","103px");
		$("img", this).css("width","156px");
		$("img", this).css("height", imageHeight);
		$(this).css("margin","5px");

	
	});
	

	$("h1.ss-form-title").css("display","none");
	
	
	
	
});
