
$(function() {




$("ul.menu li h1").animate({opacity: 0.8});
$("ul.menu li").hover(function(){
    $('h1',this).animate({ backgroundColor: '#333',opacity: 0.8, width: '955px', color: '#fff' }, {queue: false});
}, function() {
    $('h1',this).animate({ width: '0', opacity: '0',  backgroundColor: '#e80953', color: '#000' }, {queue: false});
});



$("ul.menu a").each(function() {
if(this.href == window.location) $(this).next('h1').addClass("on"), $(this).addClass("on");
}); 

$('.sidebar_box:first').addClass('sidebar_box_first');
$('div.footer_box:last').addClass('footer_box_last');


    $(".footer_box a").hover(function() {
      $(this).stop().animate({opacity: "0.5"}, 'slow');
    },
    function() {
      $(this).stop().animate({opacity: "1"}, 'slow');
    });
	
	    $("ul.menu a").hover(function() {
      $(this).stop().animate({opacity: "0.7"}, 'slow');
    },
    function() {
      $(this).stop().animate({opacity: "1"}, 'slow');
    });



});
