$(document).ready(function()
{
	$('.nav li').find("a").hover(
		function(e){
	$(this).hoverFlow(e.type, { 'color': '#5c5c5c' }, 200); /*00447c*/
			 $(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': '#5c5c5c'}, 200);}, /*00447c*/
		function(e) {$(this).hoverFlow(e.type,{'color': '#999'}, 400);}
	);	
	$('.proj-1 li').find("a").hover(
		function(e) {$(this).hoverFlow(e.type,{'color': '#5c5c5c'}, 200);}, /*00447c*/
		function(e) {$(this).hoverFlow(e.type,{'color': '#999'}, 400);}
	);	
	$('.locations li').find("a").hover(
		function(e) {$(this).hoverFlow(e.type,{'color': '#5c5c5c'}, 200);}, /*afbd22*/
		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': '#5c5c5c'}, 300);} /*00447c*/
	);		
});
