var root = "/";
$.getScript("includes/javascript/jquery/jquery_plugins/jquery.hoverIntent.js");


$(document).ready(function() { 

	// Bilderbereich im Kopf
	$('#kopfbild').cycle({ 
		fx: 'fade', 
	    speed:  6000
	});
	$.getScript('includes/javascript/pagezoom.js');
	// Navigation
	/*var hoverConfigItem = {    
	     sensitivity: 3, // number = sensitivity threshold (must be 1 or higher)    
	     interval: 200, // number = milliseconds for onMouseOver polling interval    
	     over: function()
				{
					$('ul',this).show();
				}, // function = onMouseOver callback (REQUIRED)    
	     timeout: 500, // number = milliseconds delay before onMouseOut    
	     out: function()
				{
					$('ul',this).hide();
				} // function = onMouseOut callback (REQUIRED)    
	};
	
	$('#nav li').hoverIntent(hoverConfigItem);
	
	$('#gallery a').lightBox({fixedNavigation:true});
	*/

});
