// JavaScript Document

$(document).ready(function(){
				//To switch directions up/down and left/right just place a "-" in front of the top/left attribute
				//Vertical Sliding
				$('.slideShow.slidedown').hover(function(){
					$(".hide", this).stop().animate({top:'-200px'},{queue:false,duration:300});
				}, function() {
					$(".hide", this).stop().animate({top:'0px'},{queue:false,duration:300});
				});
				//Slide Left
				$('.slideShow.slideleft').hover(function(){
					$(".hide", this).stop().animate({left:'-330px'},{queue:false,duration:300});
				}, function() {
					$(".hide", this).stop().animate({left:'0px'},{queue:false,duration:300});
				});
				
				//Slide Right
				$('.slideShow.slideright').hover(function(){
					$(".hide", this).stop().animate({left:'330px'},{queue:false,duration:300});
				}, function() {
					$(".hide", this).stop().animate({left:'0px'},{queue:false,duration:300});
				});
				
				//Full Caption Sliding (Hidden to Visible)
				$('.boxgrid.captionfull').hover(function(){
					$(".hide", this).stop().animate({top:'160px'},{queue:false,duration:160});
				}, function() {
					$(".hide", this).stop().animate({top:'260px'},{queue:false,duration:160});
				});
				
			});

