	$(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:'58px'},{queue:false,duration:300});
				},
				function()
				{
					$(".slide", this).stop().animate({top:'48px'},{queue:false,duration:300});
					//$(this).stop().animate({height:'110px'},{queue:false,duration:300});
				}
			);
			
			// affiliate fading
			$(".affiliate").css("opacity","0.3"); 
			$('.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.3}, {duration:200} );
				}
			);
		}
	);

