
// newsletter signup box

jQuery(document).ready(function(){
	
	jQuery("#ename").bind("focus", function(e) {
		if(jQuery(this).val() == 'Join our mailing list')
			jQuery(this).val('');	
	});
	
	jQuery("#ename").bind("blur", function(e) {
		if(jQuery(this).val() == '')
			jQuery(this).val('Join our mailing list');	
	});
	
	jQuery("#e_signup").bind("submit", function(e) {
 
	// store submitted email value
	var acc = jQuery('#ename').val();
 
		jQuery.ajax({
			type: "POST",
			url: "includes/inc.signup.php",
			data: "acct="+acc,
			success: function(html){
				jQuery(".e_sign").html(html).hide().fadeIn('fast', function(){
					
					pause(2000);
					jQuery(".e_sign").html('<script type="text/javascript" src="includes/javascript/e_signup.js"></script><form id="e_signup" method="post" action=""><input class="search_box" id="ename" autocomplete="off" type="text" size="23" maxlength="50" value="Join our mailing list" /><input type="image" class="news_icon" src="images/go_button.png" alt="Join our mailing list" /></form>');
				});
			}
		});
	return false;
	});
});


function pause(millis) {
var date = new Date();
var curDate = null;
do { 
      curDate = new Date(); 
   }
    while(curDate-date < millis);
}