$(document).ready(function() { $("#div_menu_header_open IMG").click(function(){ if($('#header_placeholder_mobile').css('display') == 'none') { $(".menu_header").appendTo("#header_placeholder_mobile"); //attach mobile menu $("#div_menu_header_open IMG").fadeOut("fast",function(){ $("#div_menu_header_open IMG").attr("src","/images/icon_menu_close.png"); $("#div_menu_header_open IMG").fadeIn(); }); $('#header_placeholder_mobile').slideDown(); $(".menu_header").fadeIn(); } else { $(".menu_header").fadeOut(); $('#header_placeholder_mobile').slideUp(); $("#div_menu_header_open IMG").fadeOut("fast",function(){ $("#div_menu_header_open IMG").attr("src","/images/icon_menu.png"); $("#div_menu_header_open IMG").fadeIn(); }); } }); $(".saved").delay(5000).slideUp(1000); $("#form_contatti").validate({ rules: { nome: "required", cognome: "required", email: { required: true, email: true }, messaggio: "required", accetta: "required" }, messages: { nome: "Inserire nome", cognome: "Inserire cognome", email: "Inserire una mail valida", messaggio: "Inserire il messaggio", accetta: "Non hai accettato i termini del servizio" } }); /*COLORBOX SULLE IMMAGINI*/ $(".img_to_zoom").colorbox({ transition: "elastic", maxWidth: "80%", maxHeight: "80%" }); $(".img_to_zoom_gallery").colorbox({ rel: 'gallery', transition: "elastic", maxWidth: "80%", maxHeight: "80%" }); $(".spot_zoom").colorbox({ transition: "elastic", maxWidth: "80%", maxHeight: "80%", open:true }); /*COLORBOX SULLE IMMAGINI*/ $("#prd-wrap-ric A").click(function(e){e.preventDefault();}); $("#prd-wrap-ric").click(function(){ var offset = $(this).offset(); var btn_height = $(this).height(); var moving = offset.top - btn_height - 40; $("html, body").animate({ scrollTop: moving }, 300); $("#prd-wrap-ric-form").slideToggle(300); if ($(window).width() < 450){ if ($("#prd-wrap-cnt").css("display") == "none"){ $("#prd-wrap-cnt").css("display","inline-block"); }else{ $("#prd-wrap-cnt").css("display","none"); } } }); $("#form_richiesta").validate({ rules: { nome: "required", cognome: "required", email: { required: true, email: true }, richiesta: "required", accetta: "required" }, messages: { nome: "Inserire nome", cognome: "Inserire cognome", email: "Inserire una mail valida", richiesta: "Inserire il testo della richiesta", accetta: "Non hai accettato i termini del servizio" } }); }); $(window).load(function() { /*Inizializzazione Slideshow Gallery*/ $(".flexslider").flexslider({ animation: "slide", controlNav: true, directionNav: true, start: function(slider){ $('.flexslider').resize(); } }); /*Inizializzazione Slideshow Gallery*/ }); /*$(window).resize(function() { $('.flexslider').resize(); });*/ $(window).scroll(function () { if ($(window).scrollTop() > 150) { $("#header_wide_content").addClass("header_fixed"); } else { $("#header_wide_content").removeClass("header_fixed"); } }); /* var map; function initialize() { var mapOptions = { zoom: 14, center: new google.maps.LatLng(40.0333026, 18.3134269), mapTypeId: google.maps.MapTypeId.ROADMAP, scrollwheel: false }; map = new google.maps.Map(document.getElementById('div_mappa'), mapOptions); var bounds = new google.maps.LatLngBounds(); var image_icon = '/images/icon_map.png'; var marker = new google.maps.Marker({ position: new google.maps.LatLng(40.0333026, 18.3134269), map: map, icon: image_icon, animation: google.maps.Animation.DROP, title: 'TR Inox S.r.l. - Accessori Nautici Lecce in Acciao Inox Made in Italy' }); var infowindow = new google.maps.InfoWindow({ content: "

TR Inox S.r.l.

Via L. Da Vinci – zona industriale 73020 Nociglia LE
Tel. 0833.784089
Email info@tr-inox.it

Indicazioni stradali

" }); google.maps.event.addListener(marker, 'click', function () { infowindow.open(map, marker); }); //infowindow.open(marker.get('map'), marker); //bounds.extend(marker.position); //map.fitBounds(bounds); //var listener = google.maps.event.addListener(map, "idle", function () { // if (map.getZoom() > 16) map.setZoom(16); // google.maps.event.removeListener(listener); //}); } google.maps.event.addDomListener(window, 'load', initialize); */