$(function() {
	$('#slide1').click(function() {
		$('.art').stop().animate({"left": 0});
	});
	$('#slide2').click(function() {
		$('.art').stop().animate({"left": -726});
	});
	$('#slide3').click(function() {
		$('.art').stop().animate({"left": -1452});
	});
	$('#slide4').click(function() {
		$('.art').stop().animate({"left": -2178});
	});
	$('.thumb').hover(function() {
		$(this).children('img').stop().animate({"top": -86}, "fast");
	}, function(){
		$(this).children('img').stop().animate({"top": 0}, "fast");
	});
	$('#contact-trigger').click(function(){
		$('.contact').slideToggle();
	});
});