$(document).ready(function()
{
	$('.nav li').find("a").hover(
		function(e){
	//$(this).hoverFlow(e.type, { 'color': '#00447c' }, 200);
	$(this).hoverFlow(e.type, { 'color': '#666' }, 200);
			 $(this).find("b").hoverFlow(e.type,{'opacity': '1.0'}, 100); 
		},function(e){
			$(this).hoverFlow(e.type,{'color': '#999'}, 400);
			$(this).find("b").hoverFlow(e.type,{'opacity': '0.0'}, 300);
 	});
	$('.col-1 li').find("a").hover(
		//function(e) { $(this).hoverFlow(e.type, { 'color': '#00447c' }, 200); },
		function(e) { $(this).hoverFlow(e.type, { 'color': '#666'}, 200); }, 
		function(e) {$(this).hoverFlow(e.type,{'color': '#999'}, 400);}
	);	
	$('.proj-1 li').find("a").hover(
		//function(e) {$(this).hoverFlow(e.type,{'color': '#00447c'}, 200);}, 
		function(e) {$(this).hoverFlow(e.type,{'color': '#666'}, 200);}, 
		function(e) {$(this).hoverFlow(e.type,{'color': '#999'}, 400);}
	);	
	$('.locations li').find("a").hover(
		function(e) {$(this).hoverFlow(e.type,{'color': '#afbd22'}, 200);}, 
		function(e) {$(this).hoverFlow(e.type,{'color': '#999'}, 400);}
	);		
	$('.emp-login').hover(
		function(e) {$(this).hoverFlow(e.type,{'color': '#999'}, 300);}, 
		function(e) {$(this).hoverFlow(e.type,{'color': '#00447c'}, 300);}
	);		
});
