/* *  * Copyright(c) 2011, Inoxidium * http://www.inoxidium.com * */  $(document).ready(function() {$(window).scroll(function() {if( (jQuery('html,body').position().top == 0) ){if ($('#topMenu').is(':visible')) {$('#topMenu').animate({height:'0px'},500, function(){$('#topMenu').css('display','none');});}}else{if (!$('#topMenu').is(':visible')) {$('#topMenu').css('display','block').animate({height:'40px'},500,'swing');}}});}); function getUrl(url) {$(document).ready(function() {$('#content').css('opacity', 0.2);$('#loading').css({display:'block',top:'50%',left:'50%',margin:'-'+($('#loading').height() / 2)+'px 0 0 -'+($('#loading').width() / 2)+'px'});$('#topMenu').animate({height:'0px'},500, function(){$('#topMenu').css('display','none');$('#content').load(url ,function(){_gaq.push(['_trackPageview', url.replace('http://www.inoxidium.com/', '')]);jQuery('html,body').animate({scrollTop:jQuery('#page').offset().top+1},500,'swing');$('#content').css('opacity', 1);$('#loading').css('display', 'none');$('#content').hide().fadeIn();/*.highlightFade({color:'rgb(253,253,175)'});*/$('#topMenu').css('display','block').animate({height:'40px'},500,'swing');});});return true;  });} function getContact(){$(document).ready(function() {$('#button').hide(0);$('#name').hide(0); $('#phone').hide(0); $('#email').hide(0);$('#company').hide(0);$('#address').hide(0);$('#address2').hide(0);$('#postcode').hide(0);$('#city').hide(0);$('#country').hide(0);$('#comments').hide(0);$('#contact').css('opacity', 0.2);$('#loading').css({display:'block',top:'50%',left:'50%',margin:'-'+($('#loading').height() / 2)+'px 0 0 -'+($('#loading').width() / 2)+'px'});$.ajax({ url: contactSend, type: 'POST', data: {  civility : $('input[name=civility]:checked').val(), name : $('#name').val(),   phone : $('#phone').val(),  email : $('#email').val(),  company : $('#company').val(),  address : $('#address').val(),  address2 : $('#address2').val(),  postcode : $('#postcode').val(),  city : $('#city').val(),  country : $('#country').val(),  comments : $('#comments').val(), }, dataType: 'json', /*async: false,*/success : function(data){$('#loading').css('display', 'none');$('#contact').css('opacity', 1);jQuery('html,body').animate({scrollTop:jQuery('#content').offset().top},500,'swing');if(data.send == true){return getUrl(contactSuccess);}else{$.each(data.error, function(key, value) {  if(value == false){ $('#'+key).removeClass().addClass( 'noerror');  $('#e-'+key).html('');}else{ $('#'+key).removeClass().addClass('error'); $('#e-'+key).html('* ' + value);} $('#'+key).show(500);});$('#button').show(500);}},error : function(XMLHttpRequest, textStatus, errorThrown) {alert('Une erreur est survenue !' + "\n" + XMLHttpRequest + "\n" + textStatus + "\n" + errorThrown);}});return false;});}
