$(document).ready(function(){
	//To switch directions up/down and left/right just place a "-" in front of the top/left attribute
	//Full Caption Sliding (Hidden to Visible)
	$('.boxgrid.captionfull').hover(function(){
		$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:160});
	}, function() {
		$(".cover", this).stop().animate({top:'94px'},{queue:false,duration:160});
	});

});

// see options here
// http://jquery.malsup.com/cycle/

$(document).ready(function(){
	$('#s1').cycle({ 
		fx: 'scrollDown', 
		speed:    3000, 
		timeout:  2000, 
		random: 1 
	});
});

$(document).ready(function() {
    $('.slideshow1').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		speed:    300,
		timeout:  6000,
		random: 1
	});
});

$(document).ready(function() {
    $('.slideshow2').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		speed:    250,
		timeout:  5000,
		random: 1
	});
});

$(document).ready(function() {
    $('.slideshow3').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		speed:    350,
		timeout:  6500,
		random: 1
	});
});

