// JavaScript Document
/* --------- TABS -------------*/
 $(function() {
                $('#tab-container > ul').tabs();
});
 
  

/* --------- PRODUCTS -------------*/

$(document).ready(function() {
    $('.pro_box').hover(function() {
      $(this).children('.box_info').addClass('hoverme');
    }, function() {
      $(this).children('.box_info').removeClass('hoverme');
    });
});





/* --------- CAROUSEL -------------*/
 
jQuery(document).ready(function() {
    jQuery('#mycarousel').jcarousel();
});






/* --------- LOCATION CHOOSER -------------*/

    $(document).ready(function() {
        var hide = false;
        $("#select").hover(function(){
            if (hide) clearTimeout(hide);
            $("#locationChooser").fadeIn();
            $("#select").addClass('on');
        }, function() {
            hide = setTimeout(function() {$("#locationChooser").fadeOut("slow");}, 250);
        });
        $("#locationChooser").hover(function(){
            if (hide) clearTimeout(hide);
        }, function() {
            hide = setTimeout(function() {$("#locationChooser").fadeOut("slow");}, 250);
            $("#select").removeClass('on');
        });
    });