function social_tracker( feature_name ) {
	_hbPageviewCustom(feature_name);
}

$(document).ready(function() {  
	$("#NofityRequestEmail").click(function(){
		if($(this).val()=="Enter your email address"){
			$(this).attr("value", ""); 
	
		}
	});
	$("input").each(function(f){
		$(this).click(function(e){
			if($(this).val().indexOf('Enter')!=-1){
				$(this).val("");
			}
			
		})
	});
	$('a#button-submit').click(function(){
		document.forms[0].submit();
		
	})
		
	
	
});
