var requesting=false;$(document).ready(function(){$("ul#homeProducts li").hover(function(){var g=$(this).attr("class");if(g!="separator"){var d=$("ul#homeProducts li."+g+" div.label");var c=$("ul#homeProducts li."+g+" div.labelFold");var f=$("ul#homeProducts li."+g+" div.info");var e=$("ul#homeProducts li."+g+" p.infoText");d.animate({bottom:"+=20"},300);c.animate({bottom:"+=20"},300);f.slideDown();e.fadeIn()}},function(){var g=$(this).attr("class");if(g!="separator"){var d=$("ul#homeProducts li."+g+" div.label");var c=$("ul#homeProducts li."+g+" div.labelFold");var f=$("ul#homeProducts li."+g+" div.info");var e=$("ul#homeProducts li."+g+" p.infoText");d.animate({bottom:"-=20"},300);c.animate({bottom:"-=20"},300);f.slideUp();e.fadeOut()}});$("ul#subscribe li.submit").click(function(){a()});$("ul#subscribe li.field input").keypress(function(c){if(c.which==13){a()}});$("ul#subscribe li.field input").focus(function(){$(this).val("")});$("ul#subscribe li.field input").blur(function(){if($(this).val()==""){$(this).val("Enter your e-mail address")}});$("div#contactForm div#.btnSubmit").click(function(){b()});$("div#contactForm input").keypress(function(c){if(c.which==13){b()}});function b(){var c=$("div#contactForm input[name='email']");var f=$("div#contactForm input[name='name']");var d=$("div#contactForm input[name='subject']");var g=$("div#contactForm textarea[name='msg']");var e=$("div#contactForm div.overlay");e.slideDown();$.post("api.php",{act:"contact",email:c.val(),name:f.val(),subject:d.val(),msg:g.val()},function(h){if(h.code!=200){alert(h.err);e.slideUp();f.focus()}else{alert("Thank you for your contact! We will usually get back to you in around 24 hours.\n\nA confirmation mail has been sent to you.");parent.location.href="index.html"}},"json")}function a(){if(requesting){return false}var c=$("ul#subscribe li.field input");c.blur();if(c.val().length==0||c.val().indexOf("@")==-1){alert("Please input a valid e-mail address first.");c.val("");c.focus();return false}requesting=true;var d=c.val();c.val("");c.animate({width:"-=193"},400,"swing",function(){$("ul#subscribe li.field div.loader").fadeIn();$.post("api.php",{act:"subscribe",email:d,source:"dropicomobile.com"},function(e){requesting=false;if(e.code!=200){alert(e.err);$("ul#subscribe li.field div.loader").fadeOut();c.val("");c.animate({width:"+=193"},400,"swing",function(){c.focus()});return false}else{alert("You have successfully subscribed to the Dropico Mobile mailing list!\n\nA confirmation e-mail has been sent to "+d+", please click on the link in the e-mail to confirm your subscription.");$("ul#subscribe li.field div.loader").fadeOut();c.val("Enter your e-mail address");c.animate({width:"+=193"},400,"swing",function(){})}},"json")})}});
