$(document).ready(function()
{
    // Handle Menu Hover
	$("#nav li.show-nav").each(function(i, element)
	{
	    $(element).bind('mouseenter', function(e) { $(e.currentTarget).addClass('active'); });
	    $(element).bind('mouseleave', function(e) { $(e.currentTarget).removeClass('active'); });
	});
	
	// Slideshow :: Header LHS
    $("#header-banner .slideshow").cycle(
    { 
        prev: '#header-banner .previous', 
        next: '#header-banner .next', 
        timeout: 10600
    });
	
	// Global :: Contact Carousel
    $("#carousel-contact .carousel").jCarouselLite(
	{
        btnNext: "#carousel-contact .next",
        btnPrev: "#carousel-contact .previous",
		speed: 600,
		auto: 10000,
		easing: "easeinout",
		visible: 1
    });
	
	// Global :: Caravans Carousel
    $("#carousel-caravans .carousel").jCarouselLite(
	{
        btnNext: "#carousel-caravans .next",
        btnPrev: "#carousel-caravans .previous",
		speed: 600,
		auto: 10000,
		easing: "easeinout",
		visible: 1
    });
	
	// Global :: Wordpress Cycle
    $("#wordpress-cycle .slideshow").cycle({ timeout: 10600 });
	
	// Global :: Twitter Cycle
	$("#twitter-cycle .slideshow").cycle({ timeout: 10600 });
});
