$(document).ready(function(){
    $('#style-box a').mouseenter(function(){
        $(this).animate({'padding-top': '+=10px'}, 200);
        return false;
    });

    $('#style-box a').mouseout(function(){
        $(this).animate({'padding-top': '-=10px'}, 200);
        return false;
    });

	$('a.menu-item').mouseenter(function(){
        $(this).children('.shade').animate({'height': '+=60px'}, 200);
		return false;
    });

    $('a.menu-item').mouseleave(function(){
        $(this).children('.shade').animate({'height': '-=60px'}, 200);
		return false;
    });
	
    $("a.popup").fancybox({
        'transitionIn': 'elastic',
        'transitionOut': 'elastic',
        'speedIn': 200, 
        'speedOut': 200, 
        'hideOnOverlayClick': true,
        'showNavArrows': true,
        'autoScale': false,
    });
    /*
    $('#bg').height($(document).height()-290);
    $(window).resize(function(){
        $('#bg').height($(document).height()-290);
    });
    */

});

