$(document).ready(function(){
	
	//Set header nav effect
	originalColor = $('.div4 a').css("color");
	$('.div4 a').hover(
    	function(){
        	$(this).css("color", "white");
		},
    	function(){
        	$(this).css("color", originalColor); // mouseout
    	}
	);

});