$().ready(function(){
	// default
	var default_color = '#363636';
	//
	$('nav ul li a').hover(function() { $(this).css('backgroundColor', $(this).parent().attr('data-hover-color')); }, function() { $(this).css('backgroundColor', default_color); });
		
    
});
