$(document).ready(function() {
	
	secondaryNav();
	
	$('.contactForm .submit .right .submitButton').hover(
		function() { 
			$(this).addClass('hover'); 
		}, 
		
		function() { 
			$(this).removeClass('hover'); 
		}
	);
	
});

function secondaryNav() {

}
