$(document).ready(function(){
	
						   $(".featured_image, .movie_image").hover(function(){
						   $(this).fadeTo("fast", 0.4); 
						   },function(){
						   $(this).fadeTo("fast", 1.0); 
						   });
						   
						   $(".featured_red1, .featured1").hover(function(){
						   $(".featured_image").fadeTo("fast", 0.4); 
						   },function(){
						   $(".featured_image").fadeTo("fast", 1.0); 
						   });
						   
						   });

$(document).ready(function(){
						 
						   $("#plant").fadeIn(1000);
						   $("#text").fadeIn(1000);
						   $(".fade_active").fadeTo("slow", 0.4);
						   $('.movie_image').tipsy();
						   
						   });
