// remap jQuery to $
(function($){})(window.jQuery);


/* trigger when page is ready */
$(document).ready(function (){

	// your functions go here

});






	

  	$(document).ready(function(){
		
	
	$("div.hp-clip").hover(function(){
			$(this).children("div").stop().fadeTo(400, 1);
		},function(){
			$(this).children("div").stop().fadeTo(600, 0);
		});
		
		$("div.hp-clip div").hide();
		
			});
