/**
 * custom.js
 *
 * 1Serpent
 * Design, Development and Managed Hosting
 * http://1serpent.com/
 *
 * Adds some magic to our pretty stuff.
 */

jQuery(document).ready(function($) {

	/**
	 * Hide no javascript div.
	 */

	$('#noscript').hide();

	/**
	 * Drop-down menu navigation fix.
	 */

	$("ul.menu > li").hover(function() {
		$(this).addClass("sp_hover");
	}, function() {
		$(this).removeClass("sp_hover");
	});

	/**
	 * Tabbed widget
	 */

	$('ul.sp_tabs_nav').tabs("div.sp_tabs_wrap > div");

	/*
	 * Carousel
	 */

    $("#sp_carousel_top .sp_carousel_container").jCarouselLite({
        btnNext: "#sp_carousel_top .sp_carousel_right",
        btnPrev: "#sp_carousel_top .sp_carousel_left",
		visible: 4,
		start: 0
    });

	$("#sp_carousel_bottom .sp_carousel_container").jCarouselLite({
        btnNext: "#sp_carousel_bottom .sp_carousel_right",
        btnPrev: "#sp_carousel_bottom .sp_carousel_left",
		visible: 4,
		start: 0
    });

});
