jQuery.noConflict();

jQuery(document).ready(function($) {


	// Start Jquery Code
	
	$("#home_image>div>div").hide();
	$("#home_image>div>div").css("padding", "50px");
	
	
	$("#home_image>div").hover(function(){
		// var box_id = $(this).attr("id");
		// 		var distance = "50px";
		// 		switch(box_id){
		// 			case "TL":
		// 				var movement = "top: " + distance + ", left: " + distance;
		// 			break;
		// 			
		// 			case "TR":
		// 				var movement = "top: " + distance + ", right: " + distance;
		// 			break;
		// 			
		// 			case "BL":
		// 				var movement = "bottom: " + distance + ", left: " + distance;
		// 			break;
		// 			
		// 			case "BR":
		// 				var movement = "bottom: " + distance + ", right: " + distance;
		// 			break;
		// 		}
		$(this).children("div:first").animate({padding: "25px"}, { queue: false, duration: "slow" }).fadeIn("slow");
		$(this).children("img:first").animate({opacity: "0"}, "slow");
	},function(){                    
		$(this).children("div:first").animate({padding: "50px"}, { queue: false, duration: "slow" }).fadeOut("slow");
		$(this).children("img:first").animate({opacity: "1"}, "slow");
	});
	// End of JQuery Code
});