  $(window).load(function () {  
       $("#content").removeClass('loading');
       $(".photo").fadeIn(500);
  });(
function($) {
	$.fn.hrefParentFunction =function(param) {
		if ($(this).find("a").length > 0) 
		$(this).mouseover(function(){
		$(this).css("cursor","pointer");
		}).click(function(param){
			document.location.href = $(this).find("a").attr("href");
			param.preventDefault();
	});
	}
})(jQuery);

