$(document).ready(function() {
	$('#nav li a').corner("top");
	//Full Caption Sliding (Hidden to Visible)
	$('.caption').hover(function(){
		$(".caption", this).stop().animate({bottom:'160px'},{queue:false,duration:300});
	}, function() {
		$(".caption", this).stop().animate({bottom:'0px'},{queue:false,duration:300});
	});
	$('.slideshow').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
});
