$(document).ready(function() {
	//area 1
	$('.fade').children().hover(function() {
		$(this).siblings().stop().fadeTo(500,0.05);
	}, function() {
		$(this).siblings().stop().fadeTo(500,1);
	});

});



$(document).ready(function () {
    var $div = $('#subnav');
    var height = $div.height();
    //$div.hide().css({ height : 0 });
    


    $('.subnav_btn').click(function () {
        if ($div.is(':visible')) {
            $div.animate({ height: 0 }, { duration: 500, complete: function () {
                $div.hide();
            } });
        } else {
            $div.show().animate({ height : height }, { duration: 500 });
        }
        
        return false;
    });
});