$.fn.extend({ disableSelection: function() { this.each(function() { if (typeof this.onselectstart != 'undefined') { this.onselectstart = function() { return false; }; } else if (typeof this.style.MozUserSelect != 'undefined') { this.style.MozUserSelect = 'none'; } else { this.onmousedown = function() { return false; }; } }); } });
$(document).ready(function() {
    $('#coda-slider-1').codaSlider({autoHeight: false, autoSlide: true, dynamicArrows: false, autoSlideInterval: 4000, autoSlideStopWhenClicked: true, dynamicTabsPosition: 'bottom' });
    $(".tab1").click(function(){window.location= 'index.php/productos'; return false;});
    $(".tab2").click(function(){window.location= 'index.php/servicios'; return false;});
    $(".tab3").click(function(){window.location= 'index.php/iluminacion'; return false;});
    $(".tab4").click(function(){window.location= 'index.php/empresa'; return false;});
    $(".tab5").click(function(){window.location= 'index.php/contacto'; return false;});
    $("#full #left_temp").hover(function (){$(this).addClass("lefthover");},function(){$(this).removeClass("lefthover");});
    $("#full #right_temp").hover(function (){$(this).addClass("righthover");},function(){$(this).removeClass("righthover");});
    $(".product_more").hover( function () { $(this).addClass("product_more_hover"); }, function () { $(this).removeClass("product_more_hover"); });
    $(".product_more").click(function(){ window.location=$(this).find("a").attr("href"); return false; });
    $(".product_detail").hover( function () { $(this).addClass("product_detail_hover"); }, function () { $(this).removeClass("product_detail_hover"); });
    $(".product_detail").click(function(){ window.location=$(this).find("a").attr("href"); return false; });
    $(document).bind("contextmenu",function(e){ return false; });
    $('body').disableSelection();
});
