File: /home/xedaptot/cms.naniguide.com/js/custom.js
/* =====================================================================
* DOCUMENT READY
* =====================================================================
*/
$(document).ready(function(){
'use strict';
$(window).resize(function(){
Modernizr.addTest('ipad', function(){
return !!navigator.userAgent.match(/iPad/i);
});
if(!Modernizr.ipad){
pms_initializeMainMenu();
}
});
pms_initializeMainMenu();
$('body').addClass('loaded');
$('body').on('click', 'a[href^="#"]:not(a[href$="#"]):not(.popup-modal)', function(e){
e.defaultPrevented;
var obj = $(this);
var target = obj.attr('href');
$('html, body').animate({
scrollTop: $(target).offset().top - parseInt($('body').css('padding-top'))
}, 1400, 'easeInOutCirc');
return false;
});
$('a.anchor-toggle').on('click', function(e){
e.defaultPrevented;
var obj = $(this);
var target = obj.data('target');
if($(target).hasClass('collapsed')) $(target).trigger('click');
$('html, body').animate({
scrollTop: $(target).offset().top - parseInt($('body').css('padding-top'))
}, 1400, 'easeInOutCirc');
return false;
});
$('a#toTop').on('click', function(e){
e.defaultPrevented;
$('html, body').animate({scrollTop: '0px'});
});
$('body').bind('touchmove', function(e){
$(window).trigger('scroll');
});
$(window).on('onscroll scrollstart touchmove', function(){
$(window).trigger('scroll');
});
$(window).scroll(function(){
var scroll_1 = $('html, body').scrollTop();
var scroll_2 = $('body').scrollTop();
var scrolltop = scroll_1;
if(scroll_1 == 0) scrolltop = scroll_2;
if(scrolltop >= 200) $('a#toTop').css({bottom: '30px'});
else $('a#toTop').css({bottom: '-40px'});
if(scrolltop > 0) $('.navbar-fixed-top').addClass('fixed');
else $('.navbar-fixed-top').removeClass('fixed');
});
$(window).trigger('scroll');
/* =================================================================
* COOKIES
* =================================================================
*/
if($('#cookies-notice').length){
$('#cookies-notice button').on('click', function(){
$.cookie('cookies_enabled', '1', {expires: 7});
$('#cookies-notice').fadeOut();
});
}
/* =================================================================
* WEATHER
* =================================================================
*/
if($('.simple-weather').length){
$('.simple-weather').each(function(){
var item = $(this);
$.simpleWeather({
location: item.data('location'),
woeid: '',
unit: item.data('unit'),
success: function(weather) {
html = '<i class="w-icon-'+weather.code+'"></i> <span class="temp">'+weather.temp+'°'+weather.units.temp+'</span>';
item.html(html);
},
error: function(error) {
item.html('<p>'+error+'</p>');
}
});
});
}
/* =================================================================
* PRICE RANGE SLIDER
* =================================================================
*/
if($('.nouislider').length){
$('.nouislider').each(function(){
var slider = $(this);
noUiSlider.create(slider.get(0), {
start: slider.data('start'),
connect: true,
tooltips: false,
step: slider.data('step'),
range: {
'min': slider.data('min'),
'max': slider.data('max')
},
format: wNumb({
decimals: 0,
thousand: ''
})
});
slider.get(0).noUiSlider.on('update', function(values, handle){
$('#'+slider.data('input')).val(values[0]+' - '+values[1]);
});
});
}
/* =================================================================
* LIVE SEARCH
* =================================================================
*/
if($('.liveSearch').length){
$('.liveSearch').each(function(){
var elm = $(this);
var scriptUrl = elm.data('url');
var wrapperID = elm.data('wrapper');
var targetID = elm.data('target');
if(scriptUrl != ''){
$('.liveSearch').liveSearch({
url: scriptUrl+'?q=',
id: wrapperID
});
$('#'+wrapperID).on('click', '.live-search-result', function(){
elm.val($(this).data('descr'));
$('#'+targetID).val($(this).data('id'));
});
$('.liveSearch').on('change', function(){
if($(this).val() == '') $('#'+targetID).val('0');
});
}
});
}
/* =================================================================
* SIGN UP/LOG IN FORM
* =================================================================
*/
$(function(){
$('.login-form').show();
$('.signup-form').hide();
$('.pass-form').hide();
$('.open-signup-form').on('click', function(){
$('.pass-form').slideUp();
$('.login-form').slideUp();
$('.signup-form').slideDown();
return false;
});
$('.open-login-form').on('click', function(){
$('.pass-form').slideUp();
$('.signup-form').slideUp();
$('.login-form').slideDown();
return false;
});
$('.open-pass-form').on('click', function(){
$('.signup-form').slideUp();
$('.login-form').slideUp();
$('.pass-form').slideDown();
return false;
});
});
/* =================================================================
* MAGNIFIC POPUP (MODAL)
* =================================================================
*/
function init_carousel(content){
if($('.owl-carousel', content).length){
$('.owl-carousel', content).each(function(){
$(this).addClass('owlWrapper').owlCarousel({
items: $(this).data('items'),
nav: $(this).data('nav'),
dots: $(this).data('dots'),
autoplay: $(this).data('autoplay'),
mouseDrag: $(this).data('mousedrag'),
rtl: $(this).data('rtl'),
//responsive: true,
responsive : {
0 : {
items: 1
},
768 : {
items: $(this).data('items')
}
}
});
});
}
}
if($('.popup-modal').length || $('.ajax-popup-link').length){
if($('.popup-modal').length){
$('.popup-modal').magnificPopup({
type: 'inline',
preloader: false,
closeBtnInside: false,
callbacks: {
open: function(){
init_carousel($(this.content));
}
}
});
$('.popup-modal').on('click', function(e){
e.defaultPrevented;
});
$('.popup-modal.hide').trigger('click');
}
if($('.ajax-popup-link').length){
$('.ajax-popup-link').each(function(){
$(this).magnificPopup({
type: 'ajax',
ajax: {
settings: {
method: 'POST',
data: $(this).data('params')
}
},
callbacks: {
open: function(){
},
ajaxContentAdded: function(){
init_carousel($(this.content));
}
}
});
});
}
$(document).on('click', '.popup-modal-dismiss', function(e){
e.defaultPrevented;
$.magnificPopup.close();
});
}
/* =================================================================
* DATEPICKER
* =================================================================
*/
if($('#from_picker').length && $('#to_picker').length){
$('#from_picker').datepicker({
dateFormat: 'dd/mm/yy',
minDate: 0,
onClose: function(selectedDate){
var a = selectedDate.split('/');
var d = new Date(a[2]+'/'+a[1]+'/'+a[0]);
var t = new Date(d.getTime()+86400000);
var date = t.getDate()+'/'+(t.getMonth()+1)+'/'+t.getFullYear();
$('#to_picker').datepicker('option', 'minDate', date);
}
});
$('#to_picker').datepicker({
dateFormat: 'dd/mm/yy',
defaultDate: '+1w'
});
}
/* =================================================================
* CALENDAR
* =================================================================
*/
if($('.hb-calendar').length > 0){
$('.hb-calendar').each(function(){
var obj = $(this);
obj.eCalendar({
ajaxDayLoader : obj.data('day_loader'),
customVar : obj.data('custom_var'),
currentMonth : obj.data('cur_month'),
currentYear : obj.data('cur_year')
});
});
}
/* =================================================================
* BOOTSTRAP MINUS AND PLUS
* =================================================================
*/
$('.btn-number').on('click', function(e){
e.defaultPrevented;
var fieldName = $(this).attr('data-field');
var type = $(this).attr('data-type');
var input = $('input[name="'+fieldName+'"]');
var currentVal = parseInt(input.val());
if(!isNaN(currentVal)){
if(type == 'minus'){
if(currentVal > input.attr('min'))
input.val(currentVal - 1).trigger('change');
if(parseInt(input.val()) == input.attr('min'))
$(this).attr('disabled', true);
}else if(type == 'plus'){
if(currentVal < input.attr('max'))
input.val(currentVal + 1).trigger('change');
if(parseInt(input.val()) == input.attr('max'))
$(this).attr('disabled', true);
}
}else
input.val(0);
});
$('.input-number').focusin(function(){
$(this).data('oldValue', $(this).val());
});
$('.input-number').on('change',function(){
var minValue = parseInt($(this).attr('min'));
var maxValue = parseInt($(this).attr('max'));
var valueCurrent = parseInt($(this).val());
var name = $(this).attr('name');
if(valueCurrent >= minValue)
$('.btn-number[data-type="minus"][data-field="'+name+'"]').removeAttr('disabled');
else{
alert('Sorry, the minimum value was reached');
$(this).val($(this).data('oldValue'));
}
if(valueCurrent <= maxValue)
$('.btn-number[data-type="plus"][data-field="'+name+'"]').removeAttr('disabled');
else{
alert('Sorry, the maximum value was reached');
$(this).val($(this).data('oldValue'));
}
});
$('.input-number').keydown(function(e){
if($.inArray(e.keyCode, [46, 8, 9, 27, 13, 190]) !== -1 ||
(e.keyCode == 65 && e.ctrlKey === true) ||
(e.keyCode >= 35 && e.keyCode <= 39))
return;
if((e.shiftKey || (e.keyCode < 48 || e.keyCode > 57)) && (e.keyCode < 96 || e.keyCode > 105))
e.defaultPrevented;
});
/* =================================================================
* ISOTOPE
* =================================================================
*/
if($('.isotopeWrapper').length){
var $container = $('.isotopeWrapper');
var $resize = $('.isotopeWrapper').attr('id');
setTimeout(function(){
$container.addClass('loaded').isotope({
layoutMode: 'masonry',
itemSelector: '.isotopeItem',
resizable: false,
masonry: {
columnWidth: $container.width() / $resize
}
});
}, 800);
$('#filter a').on('click', function(e){
e.defaultPrevented;
$('#filter a').removeClass('current');
$(this).addClass('current');
var selector = $(this).attr('data-filter');
$container.isotope({
filter: selector,
animationOptions: {
duration: 300,
easing: 'easeOutQuart'
}
});
return false;
});
}
/* =================================================================
* IMAGE FILL
* =================================================================
*/
if($('.img-container').not('.lazyload').length){
$('.img-container').not('.lazyload').imagefill();
}
$('.panel-collapse').on('shown.bs.collapse', function(e){
if($('.img-container').length){
$('.img-container').imagefill();
}
});
/* =================================================================
* LOAZYLOAD IMAGES
* =================================================================
*/
if($('.lazyload:not(.img-container)').length){
$('.lazyload:not(.img-container)').lazyload();
}
if($('.img-container.lazyload').length){
$('.img-container.lazyload img').lazyload();
$('.img-container.lazyload img').load(function(){
if($(this).parents('.img-container').length > 0)
$(this).parents('.img-container').imagefill();
});
}
/* =================================================================
* SHARRRE
* =================================================================
*/
var sharrre_media = "";
var sharrre_descr = "";
if($('meta[itemprop="image"]').length)
sharrre_media = $('meta[itemprop="image"]').attr('content');
if($('meta[name="description"]').length)
sharrre_descr = $('meta[name="description"]').attr('content');
if($('#twitter').length){
$('#twitter').sharrre({
share: {
twitter: true
},
template: '<a class="count" href="#">{total}</a><a class="share">Tweet</a>',
enableHover: false,
enableTracking: false,
enableCounter: false,
buttons: { twitter: {}},
click: function(api, options){
api.simulateClick();
api.openPopup('twitter');
}
});
}
if($('#facebook').length){
$('#facebook').sharrre({
share: {
facebook: true
},
template: '<a class="count" href="#">{total}</a><a class="share">Share</a>',
enableHover: false,
enableTracking: false,
enableCounter: false,
buttons: { facebook: {}},
click: function(api, options){
api.simulateClick();
api.openPopup('facebook');
}
});
}
if($('#pinterest').length){
$('#pinterest').sharrre({
share: {
pinterest: true
},
template: '<a class="count" href="#">{total}</a><a class="share">Pin it</a>',
enableHover: false,
enableTracking: true,
enableCounter: false,
buttons: {
pinterest: {
media: sharrre_media,
description: sharrre_descr,
layout: 'vertical'
}
},
click: function(api, options){
api.simulateClick();
api.openPopup('pinterest');
}
});
}
/* =================================================================
* ROYAL SLIDER
* =================================================================
*/
if($('.royalSlider').length){
function playSlideVideo(slider){
if(slider.currSlide.content.find('.rsPlayBtn').length) {
slider.playVideo();
}
};
function royalSliderInit(mode){
if(mode == 'load' || $('.royalSlider').hasClass('fullSized')){
var height = window.innerHeight || $(window).height();
height = height-parseInt($('body').css('padding-top'));
if(height > 1200 && pms_isMobile) height = 667;
var width = $(window).width();
$('.royalSlider').height(height);
if($('.royalSlider').hasClass('fullWidth')){
var settings = {
arrowsNav: true,
loop: true,
keyboardNavEnabled: true,
controlsInside: false,
imageScaleMode: 'fill',
arrowsNavAutoHide: false,
autoHeight: false,
autoScaleSlider: false,
autoScaleSliderWidth: width,
autoScaleSliderHeight: height,
controlNavigation: 'bullets',
thumbsFitInViewport: false,
navigateByClick: true,
startSlideId: 0,
autoPlay: {
enabled: true,
pauseOnHover: false,
delay: 4000
},
transitionType:'fade',
globalCaption: false,
deeplinking: {
enabled: true,
change: false
},
video: {
autoHideArrows: false,
youTubeCode: '<div class="videoWrapper"><iframe src="https://www.youtube-nocookie.com/embed/%id%?rel=0&autoplay=1&showinfo=0&controls=0&modestbranding=1&wmode=transparent&start=%start%" allowfullscreen frameborder="0" allow="autoplay; encrypted-media"></iframe></div>'
}
};
}else{
var settings = {
controlNavigation: 'thumbnails',
autoScaleSlider: true,
autoScaleSliderWidth: 960,
autoScaleSliderHeight: 850,
autoHeight: true,
loop: false,
imageScaleMode: 'fit-if-smaller',
navigateByClick: true,
numImagesToPreload:2,
arrowsNav:true,
arrowsNavAutoHide: true,
arrowsNavHideOnTouch: true,
keyboardNavEnabled: true,
fadeinLoadedSlide: true,
globalCaption: false,
globalCaptionInside: false,
video: {
autoHideArrows: false,
youTubeCode: '<div class="videoWrapper"><iframe src="https://www.youtube-nocookie.com/embed/%id%?rel=0&autoplay=1&showinfo=0&controls=0&modestbranding=1&wmode=transparent&start=%start%" allowfullscreen frameborder="0" allow="autoplay; encrypted-media"></iframe></div>'
}
};
}
setTimeout(function(){
$('.royalSlider').royalSlider(settings).show();
var slider = $('.royalSlider').data('royalSlider');
slider.ev.on('rsAfterSlideChange', function(){
playSlideVideo(slider)
});
slider.ev.on('rsAfterContentSet', function(e, slideObject) {
playSlideVideo(slider);
});
}, 400);
if($('.stellar').length){
$.stellar('destroy');
stellarInit();
}
}
}
$(window).resize(function(){
royalSliderInit('resize');
});
royalSliderInit('load');
}
/* =================================================================
* LAZY LOADER
* =================================================================
*/
if($('.lazy-wrapper').length){
$('.lazy-wrapper').each(function(){
$(this).lazyLoader({
loader: $(this).data('loader'),
mode: $(this).data('mode'),
limit: $(this).data('limit'),
pages: $(this).data('pages'),
variables: $(this).data('variables'),
isIsotope: $(this).data('is_isotope'),
more_caption: $(this).data('more_caption')
});
});
}
/* =================================================================
* OWL CAROUSEL
* =================================================================
*/
if($('.owlWrapper').length){
$('.owlWrapper').each(function(){
$(this).owlCarousel({
items: $(this).data('items'),
nav: $(this).data('nav'),
dots: $(this).data('dots'),
autoplay: $(this).data('autoplay'),
mouseDrag: $(this).data('mousedrag'),
rtl: $(this).data('rtl'),
responsive : {
0 : {
items: 1
},
768 : {
items: $(this).data('items')
}
}
});
});
}
/*==================================================================
* GOOGLE MAPS
* =================================================================
*/
if($('#mapWrapper').length){
var gscript = document.createElement('script');
gscript.type = 'text/javascript';
gscript.src = '//maps.google.com/maps/api/js?callback=pms_gmaps_callback';
if($('meta[name="gmaps_api_key"]').length) gscript.src += '&key='+$('meta[name="gmaps_api_key"]').attr('content');
document.body.appendChild(gscript);
}
/*==================================================================
* ACTIV'MAP
* =================================================================
*/
if($('#activmap-wrapper').length){
var script = document.createElement('script');
script.type = 'text/javascript';
script.src = '//maps.googleapis.com/maps/api/js?v=3.exp&libraries=places&sensor=false&callback=activmap_init';
if($('meta[name="gmaps_api_key"]').length) script.src += '&key='+$('meta[name="gmaps_api_key"]').attr('content');
document.body.appendChild(script);
}
});
function activmap_init(){
'use strict';
var elm = $('#activmap-wrapper');
elm.activmap({
places: pms_locations,
icon: elm.data('icon'),
icon_center: elm.data('icon_center'),
lat: elm.data('lat'), //latitude of the center
lng: elm.data('lng'), //longitude of the center
radius: 0,
cluster: true,
country: null,
posPanel: 'right',
mapType: 'roadmap',
request: 'large',
allowMultiSelect: true,
zoom: elm.data('zoom'),
show_center: true,
locationTypes: ['geocode','establishment']
});
}
function pms_gmaps_callback(){
'use strict';
/* =================================================================
* GEOLOCATION
* =================================================================
*/
if($('meta[name="autogeolocate"]').length){
//Geolocation error handler
function handleNoGeolocation(errorFlag){
if(errorFlag == true)
console.log('Geolocation service failed.');
else
console.log('Your browser doesn\'t support geolocation.');
}
if(navigator.geolocation){
navigator.geolocation.getCurrentPosition(function(position){
var latlng = new google.maps.LatLng(position.coords.latitude, position.coords.longitude);
var geocoder = new google.maps.Geocoder();
geocoder.geocode({ 'latLng': latlng }, function (results, status){
if(status == google.maps.GeocoderStatus.OK){
if(results[1]){
for(var i = 0; i < results[0].address_components.length; i++){
for(var j = 0; j < results[0].address_components[i].types.length; j++){
if(results[0].address_components[i].types[j] == 'country'){
var countryCode = results[0].address_components[i].short_name;
$.getJSON('https://restcountries.eu/rest/v2/alpha/'+countryCode)
.done(function(data){
if(data.currencies[0]){
var code = data.currencies[0].code;
}
});
break;
}
}
}
}
}
});
}, function(){
handleNoGeolocation(true);
});
}else
handleNoGeolocation(false);
}
/* =================================================================
* GMAPS INIT
* =================================================================
*/
var gmaps_id = 'mapWrapper';
if($('#'+gmaps_id).length){
var overlayTitle = 'Agencies';
var image = $('#'+gmaps_id).attr('data-marker');
var map = new google.maps.Map(document.getElementById(gmaps_id),{
mapTypeId: google.maps.MapTypeId.ROADMAP,
scrollwheel: false,
zoomControl: true,
zoomControlOptions:{
style: google.maps.ZoomControlStyle.LARGE,
position: google.maps.ControlPosition.LEFT_CENTER
},
streetViewControl:true,
scaleControl:false,
zoom: 12,
styles:[
{
'featureType': 'water',
'stylers': [
{
'color': '#AAC6ED'
},
]
},
{
'featureType': 'road',
'elementType': 'geometry.fill',
'stylers': [
{
'color': '#FCFFF5'
},
]
},
{
'featureType': 'road',
'elementType': 'geometry.stroke',
'stylers': [
{
'color': '#808080'
},
{
'lightness': 54
}
]
},
{
'featureType': 'landscape.man_made',
'elementType': 'geometry.fill',
'stylers': [
{
'color': '#D5D8E0'
}
]
},
{
'featureType': 'poi.park',
'elementType': 'geometry.fill',
'stylers': [
{
'color': '#CBDFAB'
}
]
},
{
'featureType': 'road',
'elementType': 'labels.text.fill',
'stylers': [
{
'color': '#767676'
}
]
},
{
'featureType': 'road',
'elementType': 'labels.text.stroke',
'stylers': [
{
'color': '#ffffff'
}
]
},
{
'featureType': 'road.highway',
'elementType': 'geometry.fill',
'stylers': [
{
'color': '#888888'
}
]
},
{
'featureType': 'landscape.natural',
'elementType': 'geometry.fill',
'stylers': [
{
'visibility': 'on'
},
{
'color': '#efefef'
}
]
},
{
'featureType': 'poi.park',
'stylers': [
{
'visibility': 'on'
}
]
},
{
'featureType': 'poi.sports_complex',
'stylers': [
{
'visibility': 'on'
}
]
},
{
'featureType': 'poi.medical',
'stylers': [
{
'visibility': 'on'
}
]
},
{
'featureType': 'poi.business',
'stylers': [
{
'visibility': 'simplified'
}
]
}
]
});
var myLatlng;
var marker, i;
var bounds = new google.maps.LatLngBounds();
var infowindow = new google.maps.InfoWindow({ content: 'loading...' });
for(i = 0; i < pms_locations.length; i++){
if(pms_locations[i][2] !== undefined && pms_locations[i][3] !== undefined){
var content = '<div class="infoWindow">'+pms_locations[i][0]+'<br>'+pms_locations[i][1]+'</div>';
(function(content){
myLatlng = new google.maps.LatLng(pms_locations[i][2], pms_locations[i][3]);
marker = new google.maps.Marker({
position: myLatlng,
icon:image,
title: overlayTitle,
map: map
});
google.maps.event.addListener(marker, 'click',(function(){
return function(){
infowindow.setContent(content);
infowindow.open(map, this);
};
})(this, i));
if(pms_locations.length > 1){
bounds.extend(myLatlng);
map.fitBounds(bounds);
}else{
map.setCenter(myLatlng);
}
})(content);
}else{
var geocoder = new google.maps.Geocoder();
var info = pms_locations[i][0];
var addr = pms_locations[i][1];
var latLng = pms_locations[i][1];
(function(info, addr){
geocoder.geocode({
'address': latLng
}, function(results){
myLatlng = results[0].geometry.location;
marker = new google.maps.Marker({
position: myLatlng,
icon:image,
title: overlayTitle,
map: map
});
var $content = '<div class="infoWindow">'+info+'<br>'+addr+'</div>';
google.maps.event.addListener(marker, 'click',(function(){
return function(){
infowindow.setContent($content);
infowindow.open(map, this);
};
})(this, i));
if(pms_locations.length > 1){
bounds.extend(myLatlng);
map.fitBounds(bounds);
}else{
map.setCenter(myLatlng);
}
});
})(info, addr);
}
}
}
}
/* =====================================================================
* MAIN MENU
* =====================================================================
*/
function pms_initializeMainMenu(){
'use strict';
var $mainMenu = $('#mainMenu').children('ul');
if(Modernizr.mq('only all and(max-width: 991px)')){
// Responsive Menu Events
var addActiveClass = false;
$('a.hasSubMenu').unbind('click');
$('li',$mainMenu).unbind('mouseenter mouseleave');
$('a.hasSubMenu').on('click', function(e){
e.defaultPrevented;
addActiveClass = $(this).parent('li').hasClass('Nactive');
if($(this).parent('li').hasClass('primary'))
$('li', $mainMenu).removeClass('Nactive');
else
$('li:not(.primary)', $mainMenu).removeClass('Nactive');
if(!addActiveClass)
$(this).parents('li').addClass('Nactive');
else
$(this).parent().parent('li').addClass('Nactive');
return;
});
}else if(Modernizr.mq('only all and(max-width: 1024px)') && Modernizr.touch){
$('a.hasSubMenu').attr('href', '');
$('a.hasSubMenu').on('touchend',function(e){
e.defaultPrevented;
var $li = $(this).parent(),
$subMenu = $li.children('.subMenu');
if($(this).data('clicked_once')){
if($li.parent().is($(':gt(1)', $mainMenu))){
if($subMenu.css('display') == 'block'){
$li.removeClass('hover');
$subMenu.css('display', 'none');
}else{
$('.subMenu').css('display', 'none');
$subMenu.css('display', 'block');
}
}else
$('.subMenu').css('display', 'none');
$(this).data('clicked_once', false);
}else{
$li.parent().find('li').removeClass('hover');
$li.addClass('hover');
if($li.parent().is($(':gt(1)', $mainMenu))){
$li.parent().find('.subMenu').css('display', 'none');
$subMenu.css('left', $subMenu.parent().outerWidth(true));
$subMenu.css('display', 'block');
}else{
$('.subMenu').css('display', 'none');
$subMenu.css('display', 'block');
}
$('a.hasSubMenu').data('clicked_once', false);
$(this).data('clicked_once', true);
}
return false;
});
window.addEventListener('orientationchange', function(){
$('a.hasSubMenu').parent().removeClass('hover');
$('.subMenu').css('display', 'none');
$('a.hasSubMenu').data('clicked_once', false);
}, true);
}else{
$('li', $mainMenu).removeClass('Nactive');
$('a', $mainMenu).unbind('click');
$('li',$mainMenu).hover(
function(){
var $this = $(this),
$subMenu = $this.children('.subMenu');
if($subMenu.length ){
$this.addClass('hover').stop();
}else{
if($this.parent().is($(':gt(1)', $mainMenu))){
$this.stop(false, true).fadeIn('slow');
}
}
if($this.parent().is($(':gt(1)', $mainMenu))){
$subMenu.stop(true, true).fadeIn(200,'easeInOutQuad');
$subMenu.css('left', $subMenu.parent().outerWidth(true));
}else
$subMenu.stop(true, true).delay(300).fadeIn(200,'easeInOutQuad');
},
function(){
var $nthis = $(this),
$subMenu = $nthis.children('ul');
if($nthis.parent().is($(':gt(1)', $mainMenu))){
$nthis.children('ul').hide();
$nthis.children('ul').css('left', 0);
}else{
$nthis.removeClass('hover');
$('.subMenu').stop(true, true).delay(300).fadeOut();
}
if($subMenu.length ){$nthis.removeClass('hover');}
}
);
}
}