// jQUERY DOM READY FUNTION
$(document).ready(function() {
	// HIDE ALL ELEMENTS WITH THE HIDE CLASS
	$('.hide').hide();
	
	
	/* SIGNUP FORM STYLING FUNCTIONS
	$('#mce-EMAIL').focus(function(){
		$(this).val("");
		$(this).css("background", "transparent url(/wp-content/themes/lz7/images/black_50.png)");
		return false;
	});
	
	$('#mce-EMAIL').focusout(function(){
		if(!$(this).val()){
		$(this).css("background", "transparent url(/wp-content/themes/lz7/images/signup_back.png) no-repeat left");
		}
		return false;
	});	
	
	$('span.btn_signup').hover(
	  function () {
		$('div#home_signup_form form input').css("border-top", "3px solid #aa0000");
		$('div#home_signup_form form input').css("border-bottom", "3px solid #aa0000");
		$('div#home_signup_form form input').css("border-left", "3px solid #aa0000");
	  }, 
	  function () {
		$('div#home_signup_form form input').css("border-top", "3px solid #fff");
		$('div#home_signup_form form input').css("border-bottom", "3px solid #fff");
		$('div#home_signup_form form input').css("border-left", "3px solid #fff");
	  }
	);
	*/

});
