jQuery('document').ready(function($){

/*
$('.sidebar').hover(function(){
	$(this).addClass('activeSidebar');
},function(){
	$(this).removeClass('activeSidebar');
});
*/

/*
$('.sidebar').css('opacity', '.5');

$(".sidebar").hover(function(){
	$(this).animate({"opacity": 1}, 250);
}, function(){
	$(this).animate({"opacity": 0.5}, 250);
});
*/

});



