$(document).ready(function(){
	
	$("div.images div#image1 span").show(); // show the first overlay //
	
	$("div.images div#image1 span p").show(); // show the first description text //
	
	$("div.gallery-nav li, div.product-nav li, div.swatch-nav li").click(function(){
		
	var elid = $(this).attr('id');
	
	$("div.images div").hide();
	
	$("div.images div#" + elid + "").fadeIn("slow"); // show the image //
	
	$("div.images div#" + elid + " span").show(); // show the overlay //
	
	$("div.images div#" + elid + " span p").show(); // show the description text //

 });
 
 //fix styling for main menu
 $("#menu-main-menu li:last-child").addClass("last");
 $(".link-col li:first-child").addClass("menu-title");

});
