$(document).ready(function(){
	$("#headerImg").click(function(){
		window.location = 'index.html';
	});
	
	$("#col1_content,#col2_content").height($('#main').height());
	
	$(".shirt").hover(function(){
    	$(this).addClass("shirtOver");
  		},
		function () {
    	$(this).removeClass("shirtOver");
  	});
 });
