﻿// JScript File

$(document).ready(function(){
				//To switch directions up/down and left/right just place a "-" in front of the top/left attribute
				
				//Caption Sliding (Partially Hidden to Visible)
				$('.boxgrid.caption').hover(function(){
					$(".cover", this).stop().animate({top:'100px'},{queue:false,duration:160});
				}, function() {
					$(".cover", this).stop().animate({top:'420px'},{queue:false,duration:420});
				});
				
				$("#HomeBox1").click(function(){window.location.href='/blankets-and-throws/';});
				$("#HomeBox2").click(function(){window.location.href='/knitwear-and-clothing/';});
				$("#HomeBox3").click(function(){window.location.href='/socks-and-scarves/';});
				$("#HomeBox4").click(function(){window.location.href='/about-us/';});
				
				
			});