$(document).ready(function() {
	$('.topMenu li, div.readNow, div.goButton, div.mediaKitButton, div#changeAddressButton, div.subscribeMenu').hover(
		function(event) {
			$(this).addClass('hover');
		}, 
		function(event) {
			$(this).removeClass('hover');
		}
	);
});

function checkSubscribeForm() {
	goodToGo = true;
	
	$('.required').each(function(index) {
		goodToGo = $(this).val() == '' ? false : goodToGo;
		if ($(this).val() == '')
			$(this).addClass('errorHere');
		else
			$(this).removeClass('errorHere');
	});	
	
	return goodToGo;
}

function checkContactForm() {
	goodToGo = true;
	
	$('.required').each(function(index) {
		goodToGo = $(this).val() == '' ? false : goodToGo;
		if ($(this).val() == '')
			$(this).addClass('errorHere');
		else
			$(this).removeClass('errorHere');
	});	
	
	return goodToGo;
}
