function comment_hover(){
jQuery('input#name').focus(function(){
	jQuery(this).val('');
    jQuery(this).css({'background-position' : '-141px -20px'});
}).blur(function(){
     jQuery(this).css({'background-position' : '0 -20px'});
});
jQuery('input#email').focus(function(){
	jQuery(this).val('');
    jQuery(this).css({'background-position' : '-141px 0'});
}).blur(function(){
     jQuery(this).css({'background-position' : '0 0'});
});
jQuery('input#url').focus(function(){
	jQuery(this).val('');
    jQuery(this).css({'background-position' : '-141px -40px'});
}).blur(function(){
     jQuery(this).css({'background-position' : '0 -40px'});
});
jQuery('#comment').focus(function(){
    jQuery(this).css({'background-position' : '-300px 0'});
}).blur(function(){
     jQuery(this).css({'background-position' : '0 0'});
});
};


jQuery(document).ready(function () {	
jQuery(function(){
			jQuery('.columnize').columnize({column: 2});
		});

comment_hover();

jQuery('img.post-image-inner').wrap('<div class="post-image-inner"></div>');

jQuery("ul.archive-bottom li:even").addClass("alt");
jQuery(".category-menu li.category ul li:even").addClass("alt");


jQuery('#nav li.nav_2 a.nav_cat').click(function () {
jQuery('ul.cat_body').slideToggle('medium');
return false;  
  });
  
});
