$(function() {
		// image hover
		$("#gallery li").fadeIn(1500);
		$("#gallery li").hover(function(){
			$(this).fadeTo("normal", .1); 
		},function(){
			$(this).fadeTo("slow", 1.0);
		});
		
		$(".stylistImage").fadeIn(1500);
		$(".stylistImage").hover(function(){
			$(this).fadeTo("normal", .5); 
		},function(){
			$(this).fadeTo("normal", 1.0);
		});
		
		$("#title").fadeIn(1500);
		
		$("#giftcardButtons").fadeIn(1500);
		
		$("#success").fadeIn(1500);
		
});