


jQuery(document).ready(function(){

jQuery('a').removeAttr('title');
jQuery('div.main-post-bg img').removeAttr('alt');
jQuery('div.secondary-post-bg img').removeAttr('alt');

jQuery('div#side_bar h3').next().fadeOut();
jQuery('ul.recent_post').fadeIn();

jQuery('div#side_bar h3').css('cursor','pointer');

jQuery('div#side_bar h3').click(
  function () {
  jQuery(this).next().slideToggle('slow');
  }
);



jQuery('div.main-post-bg img').mouseover(
function(){
	jQuery(this).fadeTo(500, 0.6);
}
);

jQuery('div.main-post-bg img').mouseout(
function(){
	jQuery(this).fadeTo(500, 1.0);
}
);


jQuery('div.secondary-post-bg img').mouseover(
function(){
	jQuery(this).fadeTo(500, 0.6);
}
);

jQuery('div.secondary-post-bg img').mouseout(
function(){
	jQuery(this).fadeTo(500, 1.0);
}
);



  });








jQuery(function () {
    if (! jQuery.browser.safari) {
        jQuery('#link_to_top').click(function () {
            jQuery(this).blur();

            jQuery('html,body').animate({ scrollTop: 0 }, 'slow');

            return false;
        });
    }
});






