$(document).ready(function(){
	
	if ($.browser.msie && parseInt($.browser.version.substr(0, 1)) < 9) { // ie7, 6 or 5
		
		// LEFT BUTTON
		$('#ButtonLeft').hover(function(){
				$('#CarpetLeft').attr('style','display:inline');
				$('#ButtonLeft a img').attr('src','/home/img/ButtonLeftOver.png');
			},function(){
				$('#CarpetLeft').attr('style','display:none');
				$('#ButtonLeft a img').attr('src','/home/img/ButtonLeftNormal.png');
			}
		);
		
		// RIGHT BUTTON
		$('#ButtonRight').hover(function(){
				$('#CarpetRight').attr('style','display:inline');
				$('#ButtonRight a img').attr('src','/home/img/ButtonRightOver.png');
			},function(){
				$('#CarpetRight').attr('style','display:none');
				$('#ButtonRight a img').attr('src','/home/img/ButtonRightNormal.png');
			}
		);
		
	}
	
	
	else{
		
		// LEFT BUTTON
		$('#ButtonLeft').hover(function(){
				$('#CarpetLeft').fadeIn();
				$('#ButtonLeft a img').fadeTo(0, 0.0).attr('src','/home/img/ButtonLeftOver.png').fadeTo(500, 1.0);
			},function(){
				//$('#CarpetLeft').fadeOut();
				$('#CarpetLeft').attr('style','display:none');
				$('#ButtonLeft a img').fadeTo(0, 0.0).attr('src','/home/img/ButtonLeftNormal.png').fadeTo(0, 1.0);
			}
		);
		
		// RIGHT BUTTON
		$('#ButtonRight').hover(function(){
				$('#CarpetRight').fadeIn();
				$('#ButtonRight a img').fadeTo(0, 0.0).attr('src','/home/img/ButtonRightOver.png').fadeTo(500, 1.0);
			},function(){
				//$('#CarpetRight').fadeOut();
				$('#CarpetRight').attr('style','display:none');
				$('#ButtonRight a img').fadeTo(0, 0.0).attr('src','/home/img/ButtonRightNormal.png').fadeTo(0, 1.0);
			}
		);


	}
	
	
});
