// Home script

$(document).ready(function() {

	$(".col1_home_pic1").hover(function(){
		$("img", this).stop().animate({top:"-144px"},{queue:false,duration:200});
	}, function() {
		$("img", this).stop().animate({top:"0px"},{queue:false,duration:600});
	});
	
	$(".col1_home_pic2, .col1_home_footer").hover(function(){
		$("img", this).stop().animate({top:"-130px"},{queue:false,duration:200});
	}, function() {
		$("img", this).stop().animate({top:"0px"},{queue:false,duration:600});
	});
	
	$(".col1_home_pic1, .col1_home_pic2, .col1_home_footer, .col2_home_pic1_1, .col2_home_pic1_2, .col2_home_pic2_1, .col2_home_pic2_2").click(function(){
     window.location=$(this).find("a").attr("href");
     return false;
	});


});
