// JavaScript Document
$(document).ready(function() {
	if($("#slideshow").length >0){
		$("#slideshow").css("overflow", "hidden");
		
		$("ul#slides").cycle({
			fx: 'fade',
			pause: 1,
			prev: '#prev',
			next: '#next'
		});
		
		$("#slideshow").hover(function() {
			$("ul#nav").fadeIn();
		},
			function() {
			$("ul#nav").fadeOut();
		});
	}
	// height changing
	$('.wrapper > .content').height($(document).height()-185);
	
});
