$("#bg").fadeOut(1);
$(function () {
    var image = new Image();
    var imagePath = 'images/bg.png';
    $(image).attr("src",imagePath).load(function(){
        $("#bg").css("background-image","url("+imagePath+")").fadeIn(500);
    });

    $('.hover').hover(function() {
        $(this).stop().animate({opacity:1.0},200);
        $(".hover").not(this).stop().animate({opacity:0.5},500);
    },
    function() {
            $(".hover").stop().animate({opacity:1},500);
    });
    
/*
    $('.hover').live('click', function(){
    	window.location = $(this).find('a').attr('href');
    })
*/
});
