// JavaScript Document

/* BEGIN FILE */
/* ========================================================= */
$(document).ready(function() {
	// -- BEGIN JQUERY STRUCTURE WITH RESIZE -- //
	function struct_fix() {
		$('.top-nav ul li ul').css({ width : $(window).width() })
	}	
	struct_fix();	
	$(window).resize(function () {
		struct_fix();
	}); 		
	// -- END JQUERY STRUCTURE WITH RESIZE -- //
	
	$('.slideshow').cycle({
		//fx: 'scrollLeft',
		timeout: 7000,
		//pager: '#slideshow-nav',
		prev: '#image-carousel-left',
		next: '#image-carousel-right'
	});	

});
/* ========================================================= */
/* END OF FILE */

