jQuery.preloadImages = function(){	for(var i = 0; i<arguments.length; i++)	{		jQuery("<img>").attr("src", arguments[i]);	}}$.preloadImages("/code/newsletter_popup/slider1.jpg");    $(window).bind('load', function() {	if ($.cookie('wl_r') != 1 && $.cookie('wl_s') != 1)	{		$('body').append('<div id="slider"><img src="/code/newsletter_popup/close.gif" onclick="hideSlider();" /><div id="ndata"><form accept-charset="utf-8" action="http://www.getresponse.pl/add_contact_webform.html" method="post" target="_top"><input type="submit" name="nsubmit" id="nsubmit" tabindex="2" value="" /><input type="text" name="email" id="email" tabindex="1" /><input type="hidden" name="webform_id" value="92995"></form></div></div>');		$('#slider').css('display', 'inline');		$('#slider').css('left', -$('#slider').innerWidth());		$('#slider').css('top', 300);		$('#slider').animate({		  left: ($(window).innerWidth() - $('#slider').innerWidth()) / 2		}, 600);		$.cookie('wl_s', 1);	}		$("#nform").validate({	   rules: {	     nemail: {	       required: true,	       email: true	     }	   },	   messages: {	     nemail: {	       required: "Podaj swój adres email",	       email: "Niepoprawny adres email"	     }	   },	   submitHandler: function(form) {	    	hideSlider();			$.post('http://'+location.host+'/code/newsletter_popup/mail.php', {m: $('#nemail').val()}, submitConfirm);       }	});		$("#bform").validate({	   rules: {	     bemail: {	       required: true,	       email: true	     }	   },	   messages: {	     bemail: {	       required: "Podaj swój adres email",	       email: "Niepoprawny adres email"	     }	   },	   errorLabelContainer: $("#err"),	   submitHandler: function(form) {			$.post('http://'+location.host+'/code/newsletter_popup/mail.php', {m: $('#bemail').val()}, submitConfirm);       }	});		$('#bemail').keydown( function(event) {	 	$('#nfo').html('');	});});function hideSlider() {	$('#slider').animate({	  left: -$('#slider').innerWidth()-10	}, 600);}function submitConfirm(data, textStatus) {	if (textStatus == 'success')	{		$('#nfo').html('Dziękujemy za zapisanie się na newsletter');		$.cookie('wl_r', 1, { expires: 365 });		$('#bemail').val('');	}}
