$(document).ready
(
	function()
	{
		if($.browser.msie && $.browser.version=="6.0") {
			$('.gradient').mouseover
			(
				function()
				{
					$(this).css('display', 'none')
				}
				 
			);
			
			$('.gradient').mouseout
			(
				function()
				{
					$(this).css('display', 'block')
				}
				 
			);
		}
		else{
			$('.gradient').mouseover
			(
				function()
				{
					$(this).stop().fadeTo
					(
						'slow',
						0
					);
				}
				 
			);
			
			$('.gradient').mouseout
			(
				function()
				{
					$(this).stop().fadeTo
					(
						'slow',
						1 
					);
				}
				 
			);
		}
	}
);
