// JavaScript Document

$(document).ready(function(){

	//Recent Work captions
	//To switch directions up/down and left/right just place a "-" in front of the top/left attribute
	
	$('.thumb-box').hover(function(){
		$(".cover", this).stop().animate({top:'125px'},{queue:false,duration:300});
	}, function() {
		$(".cover", this).stop().animate({top:'160px'},{queue:false,duration:300});
	});
});

$(function(){
	//Horizontal Sliding for homepage #Slider
	
	//To switch directions up/down and left/right just place a "-" in front of the top/left attribute

	$('#slider').hover(function(){
		$(".cover", this).stop().animate({left:'500px'},{queue:false,duration:300});
	}, function() {
		$(".cover", this).stop().animate({left:'770px'},{queue:false,duration:300});
	});
	
});

