$(document).ready( function() {
	
	$('#news_rss br:first').remove();
	
	$("#link_list li.row1").hover(function(){
	$('li.row2').hide();
	},function(){
	  $('li.row2').show();
	});
});

//$(function () {
//
//	$('#frm_news .btn').click(function() {
//		
//		var first_name = $('#frm_news input#first_name').val();
//		var last_name = $('#frm_news input#last_name').val();
//		var email = $('#frm_news input#email').val();
//		var phone = $('input#phone').val();
//		var preferred_time = $('input#preferred_time').val();
//		var preferred_method = $('input#preferred_method').val();
//		var comments = $('textarea#comments').val();
//		
//		var dataString = 'first_name=' + first_name + '&last_name=' + last_name + '&email=' + email + '&phone=' + phone + '&preferred_time=' + preferred_time + '&preferred_method=' + preferred_method + '&comments=' + comments; 
//		
//		if(first_name == "" || last_name == "" || email == "") {
//			alert("You have left a required field blank.");
//		}
//		else {
//		
//			$.ajax({
//				type: "POST",
//				url: "signup/news_signup.php",
//				data: dataString,
//				success: function () {
//					$('#news_form').html("<div class='message'></div>");
//					$('.message').html("<h2>Thank You!</h2>").append("<p>You have been added to the Newsletter subscriber list.</p>");
//					$('.message').css({ background: "#e0dad2", padding: "8px 8px 180px 8px" });
//				}
//			});
//			return false;
//		}
//		
//	});
//	
//});

//$(function () {
//
//	$('#frm_hreport .btn').click(function() {
//		
//		var h_first_name = $('#frm_hreport input#h_first_name').val();
//		var h_last_name = $('#frm_hreport input#h_last_name').val();
//		var h_email = $('#frm_hreport input#h_email').val();
//		var h_address = $('#frm_hreport input#h_address').val(); 
//		var h_city = $('#frm_hreport input#h_city').val(); 
//		var h_state = $('#frm_hreport input#h_state').val();
//		var h_zip = $('#frm_hreport input#h_zip').val(); 
//		
//		var h_dataString = 'first_name=' + h_first_name + '&last_name=' + h_last_name + '&email=' + h_email + '&address=' + h_address + '&city=' + h_city + '&state=' + h_state + '&zip=' + h_zip; 
//		
//		if(h_first_name == "" || h_last_name == "" || h_email == "") {
//			alert("You have left a required field blank.");
//		}
//		else {
//		
//			$.ajax({
//				type: "POST",
//				url: "signup/hreport.php",
//				data: h_dataString,
//				success: function () {
//					$('#hreport_form').html("<div class='message'></div>");
//					$('.message').html("<h2>Thank You!</h2>").append("<p>You have been added to the Hole Report subscriber list.</p>");
//					$('.message').css({ background: "#e0dad2", padding: "8px 8px 180px 8px" });
//				}
//			});
//			return false;
//		}
//		
//	});
//	
//});