// JavaScript Document
$(document).ready(function(){
		$(".coolfade").animate({"opacity": "0.7"});
		$(".overlay").animate({"opacity": "0"}, {"duration": (0)});
		$(".overlay1").animate({"opacity": "0"}, {"duration": (0)});
		
		$(".coolfade").mouseenter(function(){
				$(this).stop().animate({"opacity": "1"}, {"duration": (700)});
		});
		
		$(".coolfade").mouseleave(function(){
				$(this).stop().animate({"opacity": "0.7"}, {"duration": (1500)});
		});
		
		$(".overlay").mouseenter(function(){
				$(this).stop().animate({"opacity": "1"}, {"duration": (700)});
		});
		
		$(".overlay").mouseleave(function(){
				$(this).stop().animate({"opacity": "0"}, {"duration": (1500)});
		});
		
		$(".overlay1").mouseenter(function(){
				$(this).stop().animate({"opacity": "1"}, {"duration": (700)});
		});
		
		$(".overlay1").mouseleave(function(){
				$(this).stop().animate({"opacity": "0"}, {"duration": (1500)});
		});
});
