
$(document).ready(function() {
	// styling for jquery & javascript
	$('.switch').show();
	$('a.switch-search').click(function() {$(this).parent().fadeOut('slow',function(){$(this).next().fadeIn('slow')});return false;
											  }).parent().next().hide();
	$('a.switch-signup').click(function() {$(this).parent().fadeOut('slow',function(){$(this).prev().fadeIn('slow')});return false;})
																											
	
	$('#signup-form').submit(function(){
   var reg = /^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*$/i;
   if(!reg.test($('#mce-EMAIL').val())) {
      alert('please enter a valid email address'); 
   }else{
		 $('#ajax-hide').load(basepath+'/store-address.php?ajax=true&email=' + escape($('#mce-EMAIL').val()),function(){
			$('#popup-content').animate({height: $('#ajax-hide').height()+'px'},1000,function(){
				$(this).html($('#ajax-hide').html());
				
				//alert($(this).attr('id'));
				$('#ajax-hide').html(''),
				$('#popup .closepopup').html('<img src="/himages/closepopup-black.gif" alt="close" />')
				//if(document.getElementById('mce-EMAIL').value != 'enter email address...'){document.getElementById('MERGE0').value = document.getElementById('mce-EMAIL').value}
				
					
					return false;
				
				
			});
			
		}); 
		signuppopup('<div style="text-align:center;padding-top:15px;"><img src="/himages/loading.gif" /></div>');
   }
		return false;
	});
	
	$('#header').after('<a href="#" class="closepopup" id="popunder" style="position:absolute;top:0;left:0;width:100%;height:100%;display:none;background-color:#000;opacity:0.5;z-index:200;"></a><div id="popup"  style="position:absolute;top:20px;left:0;display:none;z-index:201;"><a href="#" class="closepopup"><img src="/himages/close-popup.gif" class="nobg"/></a><div id="popup-content"></div><div id="popup-footer-under" style="width:100%"></div><div id="popup-footer-over" style="position:relative;width:100%"></div></div><div id="ajax-hide" style="position:absolute;top:0;left:0;display:none;"></div>');
	
	$('.closepopup').click(function(){$('#popup').fadeOut('slow',function(){$('#popup .closepopup').html('<img src="/himages/close-popup.gif" class="nobg"/>')});$('#popunder').fadeOut('slow');$('#popup-content').css('height','auto');;return false;})
	function signuppopup(html){
		$('#popup-content').html(html);
		$('#popup-content').css('height','22px');
		$('#popup').fadeIn('slow',function(){/* $('#popunder').css('height',document.height+'px'); */ });
		$('#popup').css('left',window.innerWidth-500+'px');
		$('#popup-content').css({'padding':0,'border':'none','width':'423px','height':'50px'});
		$('#popup').addClass('signup');
		$('#popup').css('top','100px');
		$('#popunder').fadeIn('slow');
		$('#popunder').css('height',document.height+'px');
		$('#popup-footer-under').css('height',$('#popup').width()*(1/15)+'px');
		$('#popup-footer-over').css('height',$('#popup').width()*(1/15)+'px');
		$('#popup-footer-over').css('top','-'+$('#popup').width()*(1/15)+'px');
	
}

})

	
