


   
   .animate { 
				position:relative; 
				margin:0 auto;
				width:600px; 
				height: 492px;  				
			}
			.animate img { 
				position:absolute; 
				left: 0;  
				top: 0;   
				-moz-transition: all 3s ease;
				-webkit-transition: all 2s ease;
				-o-transition: all 3s ease;
				transition: all 3s ease;
			}
			.animate img.first {
				opacity:0;
				filter:alpha(opacity=0);
			}
			.animate:hover img.first {
				opacity:1;
				filter:alpha(opacity=100);
			}
			.animate:hover img.second, .animate8 img.second:hover {
				opacity:0;
				filter:alpha(opacity=0);
				-moz-transform:scale(0, 1);
				-webkit-transform:scale(0, 1);
				-o-transform:scale(0, 1);
				-ms-transform:scale(0, 1);
				transform:scale(0, 1);
			}

