jQuery(document).ready(function(){

	
    $(document).pngFix(); 
  

	//padding issues lazyway
	jQuery('.mainSidebarWidget:last').removeClass('marginBottom');
	
	//add current class hardway
	var jQuerypostName=jQuery('#article h1').text();
	jQuery('#articleSidebar ul li a').each(function(){
		if (jQuerypostName == jQuery(this).text()){
			jQuery(this).parent().addClass('currentPost');
		}
	});
	
	//nice transitions
	jQuery('#article p, #plusMenu, #articleSidebar').hide().fadeIn('slow');
	
	//nav overlay
	jQuery('#topHolder').hover(
		function () {
   			jQuery('#overlay').stop(true, true).animate({
 				'top':'+=200px'
 			}, 'medium');
 		 },
  		function () {
    		jQuery('#overlay').stop(true, true).animate({
 				'top':'-=200px'
 			}, 'medium');
  		}
	)
	
});


    
  
      




