$(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;
	});
	
	$(".projectButton").click(function(){
	  window.location=$(this).find("a").attr("href"); return false;
	});
	
	
	//Imageswap script for the yarns page

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

	$(".yarns .thumbPic a").click(function(){
		var id = $(this).attr("id");
		
		var largePath = $(this).attr("url");
		var largeAlt = $(this).attr("title");
		
		$("#largeImg"+id).attr({ src: largePath, alt: largeAlt });
		
		$("#swatch-title"+id).html(largeAlt); return false;
	});
	
		
});