// JavaScript Document
$(function() {  
  $(".submit_button").click(function() { 

	var email_address = $("input#email_address_field").val();  
	
  //alert (dataString);return false;
	
	$.post("form_script.php", { email_address: email_address },
  function(data){
		//alert("success");
		$('#updates_intro_news').hide();
		$('#updates_intro_news').html("Thank you.");
		$('#updates_intro_news').fadeIn(500);
		
		$('#updates_intro_home').hide();
		$('#updates_intro_home').html("Thank you.");
		$('#updates_intro_home').fadeIn(500);
		document.email_form.reset();

  });
  return false;
  }); 
	
	

	
}); 


$(document).ready(function(){
   $('ul.artists li:odd').css({ borderRight: "none", paddingLeft: "18px", paddingRight: "0px"});

});
