
jQuery(document).ready(function($){
				//To switch directions up/down and left/right just place a "-" in front of the top/left attribute
				//Vertical Sliding
				$('.albumgrid.slidedown').hover(function(){
					$(".a_cover", this).stop().animate({top:'-160px'},{queue:false,duration:300});
				}, function() {
					$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:300});
				});
				$('#menu_item_2 ul').hide();
  				$('#mc_menu_1 li a').click(
    				function() {
        			$(this).next().slideToggle('normal');	
      				}
    			);
    							
				//Horizontal Sliding
				$('.albumgrid.slideright').hover(function(){
					$(".a_cover", this).stop().animate({left:'200px'},{queue:false,duration:300});
				}, function() {
					$(".a_cover", this).stop().animate({left:'0px'},{queue:false,duration:300});
				});
				//Diagnal Sliding
				$('.albumgrid.thecombo').hover(function(){
					$(".a_cover", this).stop().animate({top:'200px', left:'200px'},{queue:false,duration:300});
				}, function() {
					$(".a_cover", this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:300});
				});
				//Partial Sliding (Only show some of background)
				$('.albumgrid.peek').hover(function(){
					$(".a_cover", this).stop().animate({top:'90px'},{queue:false,duration:160});
				}, function() {
					$(".a_cover", this).stop().animate({top:'0px'},{queue:false,duration:160});
				});
				//Full Caption Sliding (Hidden to Visible)
				$('.albumgrid.a_captionfull').hover(function(){
					$(".a_cover", this).stop().animate({top:'120px'},{queue:false,duration:160});
				}, function() {
					$(".a_cover", this).stop().animate({top:'200px'},{queue:false,duration:160});
				});
				//Caption Sliding (Partially Hidden to Visible)
				$('.albumgrid.a_caption').hover(function(){
					$(".a_cover", this).stop().animate({top:'120px'},{queue:false,duration:160});
				}, function() {
					$(".a_cover", this).stop().animate({top:'200px'},{queue:false,duration:160});
				});
			});

