$(document).ready(function() 
            {
                $('div.gallery').find('img').attr('border','0');
            
                $('a:has(img)[href$=".gif"],a:has(img)[href$=".jpg"],a:has(img)[href$=".jpeg"],a:has(img)[href$=".png"]').addClass('fbox');
                
                $('div.gallery').each(function() 
                {
                    $(this).find('a.fbox').attr("rel","fbox-" + this.id);				
			    });                 
                
                $('a.fbox').fancybox();
                
                
                $('div.entry').find('pre').wrapInner('<span></span>').hover(function() {
    var contentwidth = $(this).contents().width();
    var blockwidth = $(this).width();		
    if(contentwidth > blockwidth) {
        $(this).animate({ width: '950px'}, 250);
        }
    }, function() {
        $(this).animate({ width: '640px' }, 250);
})

               $('#commentform').validate();
            });