	$(document).ready(
		function()
		{
			//Horizontal Sliding
			$('.boxgrid.slideright').hover(
				function()
				{
					//$(this).height(180);
					$(this).stop().animate({height:'180px'},{queue:false,duration:300});
					$(".slide", this).stop().animate({top:'110px'},{queue:false,duration:300});
				},
				function()
				{
					$(".slide", this).stop().animate({top:'40px'},{queue:false,duration:300});
					$(this).stop().animate({height:'110px'},{queue:false,duration:300});
				}
			);
			
			// affiliate fading
			$(".affiliate").css("opacity","0.4"); 
			$('.affiliate').hover(
				function()
				{
					// SET OPACITY TO 100%  
					$(this).stop().animate( {opacity: 1.0}, {duration:200} );
				}
			);
			$('.affiliate').mouseout(
				function()
				{
					// SET OPACITY TO 100%  
					$(this).stop().animate( {opacity: 0.4}, {duration:200} );
				}
			);
		}
	);
	