$(function(){
 $('a.side').bsShow({effect: null, css:'/d/blogslideshow.css'});
 
 $("div.item", "#menu").hover(function(){$(this).addClass('hov')}, function(){$(this).removeClass('hov')});
 $("div.item", "#menu").click(function(){document.location = $("a", this).attr('href')});

 $("div.banner").hover(function(){$("div.bg", this).fadeTo(20, 0.7);}, function(){$("div.bg", this).fadeTo(20, 0)});
 $("div.item", "#banners").click(function(){document.location = $("a", this).attr('href')});
});

