$(document).ready(function() {  


	$("#TR_events").hover( function() {
		
		$(this).addClass("hover").stop() /* Add class of "hover", then stop animation queue buildup*/
		$(this).animate({
				backgroundPosition: '125px',
				paddingRight: '200px',
			}, 400); /* this value of "200" is the speed of how fast/slow this hover animates */ 
		$("#TR_events_txt").animate({
			    opacity: '1.0'
			}, 400);



		} 
		, function() {
			
			$(this).removeClass("hover").stop()  /* Remove the "hover" class , then stop animation queue buildup*/
				$(this).animate({
					backgroundPosition: '0',
					paddingRight: '0px',
					
				}, 200);
				$("#TR_events_txt").animate({
					    opacity: '0.0'
					}, 200);      
								
             


	});  
	
	$("#BR_twisting").hover( function() {
		
		$(this).addClass("hover").stop() /* Add class of "hover", then stop animation queue buildup*/
		$(this).animate({
				backgroundPosition: '125px',
				paddingRight: '200px',
			}, 400); /* this value of "200" is the speed of how fast/slow this hover animates */
			$("#BR_twisting_txt").animate({
				    opacity: '1.0'
				}, 400);

		} 
		, function() {
			
			$(this).removeClass("hover").stop()  /* Remove the "hover" class , then stop animation queue buildup*/
				$(this).animate({
					backgroundPosition: '0',
					paddingRight: '0px',
					
				}, 200);      
				$("#BR_twisting_txt").animate({
					    opacity: '0.0'
					}, 200);								
             


	});                

	$("#TL_fashion").hover( function() {
		
		$(this).addClass("hover").stop() /* Add class of "hover", then stop animation queue buildup*/
		$(this).animate({
				backgroundPosition: '0',
				paddingRight: '120px',
				marginLeft:'-250px'
			}, 400); /* this value of "200" is the speed of how fast/slow this hover animates */
			$("#TL_fashion_txt").animate({
				    opacity: '1.0'
				}, 400);
		} 
		, function() {
			
			$(this).removeClass("hover").stop()  /* Remove the "hover" class , then stop animation queue buildup*/
				$(this).animate({
					backgroundPosition: '0',
					paddingRight: '0px',
					marginLeft:'-128px' 
					
				}, 200);      
			$("#TL_fashion_txt").animate({
				    opacity: '0.0'
				}, 200);								

	});
	
	$("#BL_sculptures").hover( function() {
		
		$(this).addClass("hover").stop() /* Add class of "hover", then stop animation queue buildup*/
		$(this).animate({
				backgroundPosition: '0',
				paddingRight: '120px',
				marginLeft:'-250px'
			}, 400); /* this value of "200" is the speed of how fast/slow this hover animates */
			$("#BL_sculptures_txt").animate({
				    opacity: '1.0'
				}, 400);
		} 
		, function() {
			
			$(this).removeClass("hover").stop()  /* Remove the "hover" class , then stop animation queue buildup*/
				$(this).animate({
					backgroundPosition: '0',
					paddingRight: '0px',
					marginLeft:'-128px' 
					
				}, 200);      
				$("#BL_sculptures_txt").animate({
					    opacity: '0.0'
					}, 200);								

	});                  



});
