$(document).ready(function(){

    //When mouse rolls over
	
	$(".junkclub_menu").mouseover(function(){
        $(this).stop().animate({height:'210px'},{queue:false, duration:600, easing: 'easeOutBounce'})
    });
	
	$(".clubnights_menu").mouseover(function(){
        $(this).stop().animate({height:'210px'},{queue:false, duration:600, easing: 'easeOutBounce'})
    });
	
	$(".junkdepartment_menu").mouseover(function(){
        $(this).stop().animate({height:'120px'},{queue:false, duration:600, easing: 'easeOutBounce'})
    });
	
	$(".junkmusic_menu").mouseover(function(){
        $(this).stop().animate({height:'120px'},{queue:false, duration:600, easing: 'easeOutBounce'})
    });
	
	$(".photogalleries_menu").mouseover(function(){
        $(this).stop().animate({height:'270px'},{queue:false, duration:600, easing: 'easeOutBounce'})
    });
	
	$(".junkextras_menu").mouseover(function(){
        $(this).stop().animate({height:'90px'},{queue:false, duration:600, easing: 'easeOutBounce'})
    });

    //When mouse is removed
	$(".junkclub_menu").mouseout(function(){
        $(this).stop().animate({height:'30px'},{queue:false, duration:1000, easing: 'easeOutBounce'})
    });
	
    $(".clubnights_menu").mouseout(function(){
        $(this).stop().animate({height:'30px'},{queue:false, duration:1000, easing: 'easeOutBounce'})
    });
	
	$(".junkdepartment_menu").mouseout(function(){
        $(this).stop().animate({height:'30px'},{queue:false, duration:1000, easing: 'easeOutBounce'})
    });
	
	$(".junkmusic_menu").mouseout(function(){
        $(this).stop().animate({height:'30px'},{queue:false, duration:1000, easing: 'easeOutBounce'})
    });
	
	$(".photogalleries_menu").mouseout(function(){
        $(this).stop().animate({height:'30px'},{queue:false, duration:1000, easing: 'easeOutBounce'})
    });
	
	$(".junkextras_menu").mouseout(function(){
        $(this).stop().animate({height:'30px'},{queue:false, duration:600, easing: 'easeOutBounce'})
    });
	
	// junk department
	
	//When mouse rolls over
	
	$(".deptjunkclub_menu").mouseover(function(){
        $(this).stop().animate({height:'120px'},{queue:false, duration:600, easing: 'easeOutBounce'})
    });
	
	$(".deptjunkmusic_menu").mouseover(function(){
        $(this).stop().animate({height:'90px'},{queue:false, duration:600, easing: 'easeOutBounce'})
    });
	
	$(".deptphotogalleries_menu").mouseover(function(){
        $(this).stop().animate({height:'60px'},{queue:false, duration:600, easing: 'easeOutBounce'})
    });
	
	$(".deptjunkextras_menu").mouseover(function(){
        $(this).stop().animate({height:'90px'},{queue:false, duration:600, easing: 'easeOutBounce'})
    });

    //When mouse is removed
	$(".deptjunkclub_menu").mouseout(function(){
        $(this).stop().animate({height:'30px'},{queue:false, duration:1000, easing: 'easeOutBounce'})
    });
	
	$(".deptjunkmusic_menu").mouseout(function(){
        $(this).stop().animate({height:'30px'},{queue:false, duration:1000, easing: 'easeOutBounce'})
    });
	
	$(".deptphotogalleries_menu").mouseout(function(){
        $(this).stop().animate({height:'30px'},{queue:false, duration:1000, easing: 'easeOutBounce'})
    });
	
	$(".deptjunkextras_menu").mouseout(function(){
        $(this).stop().animate({height:'30px'},{queue:false, duration:600, easing: 'easeOutBounce'})
    });

});
