// JavaScript Document

jQuery(document).ready(function(){
										  
				  
		 								  
				   
			Cufon.replace('h1,h2,h3,.intro p, .bigbutton,  .title');		   
			
			
			jQuery(".gallery-image").hover(function(){
			jQuery( this).stop().fadeTo("medium", 0.1); // This should set the opacity to 100% on hover
				
			//jQuery(this).children().stop().fadeTo("medium", 1); // This should set the opacity to 100% on hover
			},function(){
			jQuery( this).stop().fadeTo("slow", 1); // This should set the opacity back to 60% on mouseout
				
			//jQuery(this).children().stop().fadeTo("medium", 0); // This should set the opacity to 100% on hover
			});
			
			
			
			
			//Vertical Sliding
				jQuery('.gallery-image-wrap').hover(function(){
					jQuery(".tooltip",this).stop().animate({top:'-4px'},{queue:false,duration:300});
				
				}, function() {
					jQuery(".tooltip",this).stop().animate({top:'-100px'},{queue:false,duration:300});
					
				});	
				
			
				
								 
		
		
	});








