$(document).ready(function() {
	// establish which page we're on
	var product = "";
	if (document.title  == "Lace Curtains | Highland Lace Company") {
		product = "curtain";
	} 
	else if (document.title   == "The Vintage Collection | Highland Lace Company") {
		product = "vintage";
	} 
	else if (document.title   == "Our Gift Collection | Highland Lace Company"){
		product = "gift";
	}  
	// 
 	if ((product == "curtain") || (product == "vintage") || (product == "gift")){
	initEventHandlers();
	} //endif

 	function initEventHandlers() {
 		$('#slideshow img').each(function(index){
			$(this).mouseenter(function() {
				$(this).addClass('selected');
				var pid = ($(this).attr('id'));
				var pName = ($(this).attr('alt'));
				var cleanName = ($(this).attr('product'));
				var source = $('#sourcetext .product-info#' + cleanName);
				var slideInfo = $(source).html();
					//$('#text-container').fadeOut(100, function(){
						$("#text-container .slidetext").html(slideInfo);
						//$('#text-container').fadeIn(100);
					//});
				}); //end.mouseenter function
			//
			$(this).mouseleave(function() {
			$('#slideshow img').removeClass('selected');
				if (product == "gift") {
					$("#text-container .slidetext").html('<h3>Our Gift Collection</h3><p>Some of our favourite things... whimsical, utilitarian, a selection of treasures to present as a gift, or to simply treat yourself!</p>');
				}
				else if(product == "vintage") {
					$("#text-container .slidetext").html('<h3>The Vintage Collection</h3><p>Our Vintage pieces are unique items of history that will surround your home with the nostalgia of beautiful handiwork from the past. </p>');
				} 
				else {
					$("#text-container .slidetext").html('<h3>Welcome to Highland Lace</h3><p class="wide">We specialize in beautiful lace curtains from many countries. Scottish cotton lace curtains are the cornerstone of our collection, but we also offer some blends to satisfy our customers&#146; needs.</p> <p class="wide">Our lace curtains have an evocative power that transports you to a timeless world, with memories of yesterday, while creating a special tranquil softening treatment for your home. We&#146;ve been producing this collection for 24 years, and have the expertise and resources to help you enhance your home. Please take a moment to browse through our collection to find your decorating solutions.</p>');
				}
			});//end.mouseleave function	
		});//end.each	
	}//end initEventHandlers
});//end document.ready
