$(document).ready(init);

function init()
{
	// thumb hover effect
	$('.thumbnail').hover(function () {
	    $(this).find('.openBox').stop().fadeTo(200, 1);
	  }, function () {
	    $(this).find('.openBox').stop().fadeTo(200, 0);
	  });
	  
	 $('.thumbnail').click(function (){
		 $(this).find('.openBox').hide();
	 });
		 
		 
	if($.browser.mozilla){
		$('#footerContent .footerMarker').css('margin-left','-20px');
		$('#footerContent .footerMarker').css('margin-top','-3px');
		
		$('#left_detail .detailMarker').css('margin-top','-3px');
		$('#profileTitle .detailMarker').css('margin-top','-3px');
		
		$('#portret').css('margin-left','5px');
	}	
}


