$(document).ready(function(){var d=$('#inner div').outerWidth();var f=0;$('#p1').addClass('active');var g=setInterval(function(){gotoPage((f+1)%3)},4000);function gotoPage(a,b){b=typeof(b)!='undefined'?b:300;var c=d*a;$('.active').removeClass('active');if(a==0)$('#p1').addClass('active');else if(a==1)$('#p2').addClass('active');else if(a==2)$('#p3').addClass('active');$('#inner').animate({'left':-c},b,function(){f=a})}$('#p1').click(function(){clearInterval(g);gotoPage(0)});$('#p2').click(function(){clearInterval(g);gotoPage(1)});$('#p3').click(function(){clearInterval(g);gotoPage(2)});$('#getcontact').click(function(){clearInterval(g);gotoPage(3)});function send(){$.loader({className:"centerLoader",content:''});$.get('./index.php?contact='+$("#emailInput").attr("value"),function(a){$("#emailInput").attr("value","");$.loader('close');$("#emailInput").blur();gotoPage(4,0)})}$('#sendLink').click(function(){send()});$('#emailInput').keypress(function(e){if(e.which==13){send();return false}})});
