$(document).ready(function () {
 
        //transitions
        //for more transition, goto http://gsgd.co.uk/sandbox/jquery/easing/
        var style = 'easeOutBack';
     
        //Retrieve the selected item position and width
        var default_left = Math.round($('#menu li.selected').offset().left - $('#menu').offset().left);
        var default_width = $('#menu li.selected').width();
 
        //Set the floating bar position and width
        $('#box').css({left: default_left});
        $('#box .head').css({width: default_width});
 
        //if mouseover the menu item
        $('#menu li').hover(function () {
         
            //Get the position and width of the menu item
            left = Math.round($(this).offset().left - $('#menu').offset().left);
            width = $(this).width(); 
 
            //Set the floating bar position, width and transition
            $('#box').stop(false, true).animate({left: left},{duration:1000, easing: style});   
            $('#box .head').stop(false, true).animate({width:width},{duration:1000, easing: style});    
     
        //if user click on the menu
        }).click(function () {
         
            //reset the selected item
            $('#menu li').removeClass('selected');  
         
            //select the current item
            $(this).addClass('selected');
 
        });
     
        //If the mouse leave the menu, reset the floating bar to the selected item
        $('#menu').mouseleave(function () {
 
            //Retrieve the selected item position and width
            default_left = Math.round($('#menu li.selected').offset().left - $('#menu').offset().left);
            default_width = $('#menu li.selected').width();
         
            //Set the floating bar position, width and transition
            $('#box').stop(false, true).animate({left: default_left},{duration:1500, easing: style});   
            $('#box .head').stop(false, true).animate({width:default_width},{duration:1500, easing: style});        
         
        });
     
});

 //sell a boat tab functionality -- added 7-9-2011

$(function () {
    if ($('.ad-gallery').length) {

        $('.ad-gallery').adGallery();
    }
});

 $(document).ready(function() {

	//When page loads...
	$(".tab_content").hide(); //Hide all content
	$("ul.tabs li:first").addClass("active").show(); //Activate first tab
	$(".tab_content:first").show(); //Show first tab content

	//On Click Event
	$("ul.tabs li").click(function() {

		$("ul.tabs li").removeClass("active"); //Remove any "active" class
		$(this).addClass("active"); //Add "active" class to selected tab
		/*$(".tab_content").hide(); //Hide all tab content

		var activeTab = $(this).find("a").attr("href"); //Find the href attribute value to identify the active tab + content
		$(activeTab).fadeIn(0); //Fade in the active ID content
		*/return true;
	});

});


