/**
 * @Autor David (Marka Informática)
 * @Fecha 14/09/2009
 * @Descripción 
 * 		Script con las funciones para el menú de la web.
 */

/**
 * JQuery onload().
 */
$(document).ready(function(){
	//efectos sobre banderas...		
	$("#bandCastellano").hover(
		function () {
			$(this).css("border","1px solid #5A5F69");
			$("#textoCastellano").animate({width:"100%"}, 300);
		}, 
		function () {
			$(this).css("border","1px solid white");
			$("#textoCastellano").animate({width:"0px"}, 500);
		}
	); 			
	$("#bandGallego").hover(
		function () {
			$(this).css("border","1px solid #5A5F69");
			$("#textoGallego").animate({width:"100%"}, 300);
		}, 
		function () {
			$(this).css("border","1px solid white");
			$("#textoGallego").animate({width:"0px"}, 500);
		}
	);
});
