/* -------------------------------------------------------------------------------------------
--	JAVASCRIPT FERIA DE VALLADOLID   ----------------------------------------------------------
--	Realizacion: digival.es 		-------------------------------------------------------------
--	joseignacio.marcos@digival.es -------------------------------------------------------------
------------------------------------------------------------------------------------------- */
function iniciaFeria(){

	if($('#nav').length){
		$('#nav li a').mouseover(function (){
			if($(this).css('background-color')!='transparent'){
				$(this).animate({backgroundColor: '#009BD4'}, 500);
			}else{
				$(this).animate({color: '#009BD4'}, 500);
			}	
		}).mouseout(function (){
			if($(this).css('background-color')!='transparent'){
				$(this).animate({backgroundColor: '#808080'}, 500);	
			}else{
				$(this).animate({color: '#ffffff'}, 500);
			}
		});
	}
	
} //FIN DE INICIAFERIA

/* -------------------------------------------------------------------------------------------
LOAD -----------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------- */ 
$(document).ready(iniciaFeria);