$(document).ready(function(){
	
	$('#cycle').cycle();

	
	//Makes the li's clickable
	
	$(".secNav li").click(function(){
	  window.location=$(this).find("a").attr("href"); return false;
	});

	
	$(".woolPic").click(function(){
	  window.location=$(this).find("a").attr("href"); return false;
	});
	
	$(".kitsPic").click(function(){
	  window.location=$(this).find("a").attr("href"); return false;
	});
	
	$(".kitsPicWH").click(function(){
	  window.location=$(this).find("a").attr("href"); return false;
	});
	
	$(".projectButton").click(function(){
	  window.location=$(this).find("a").attr("href"); return false;
	});
	
	
	//Imageswap script for the yarns page

	$(".largePic h3").append('<em></em>')

	$(".thumbPic a").click(function(){
	
		var largePath = $(this).attr("href");
		var largeAlt = $(this).attr("title");
		
		$("#largeImg").attr({ src: largePath, alt: largeAlt });
		
		$("h3 em").html(" :: " + largeAlt + ""); return false;
	});
	
	
	$("img.bootiqueThumb").click(function(){
		var id = $(this).attr("id");
		$("div.bootique_kits").css("display", "none");
		$("div#"+id).css("display", "block");
	});
			
});