var IE;

$(document).ready(function(){
	// Rodondeo de esquinas.
	$('#content').corner('top 7px');
	$('div#header #header-content #menu-bar #links #idiomas-disponibles ul').corner('5px');

	$('div#menu #menu-content li').hover(function() {
		$(this).addClass('menu_li_active');
	}, function() {
		$(this).removeClass('menu_li_active');
	});
	$('div#menu #menu-content li#option-menu-home').hover(function() {
		$(this).addClass('menu_li_active_home');
	}, function() {
		$(this).removeClass('menu_li_active_home');
	});	
	
	// Bocadillo footer.
	$('#footer #icons #telefono-pie').mouseenter(function() {
		if ($('#info-caja').length == 0) {
			$('#footer #icons #telefono-pie').append('<div id="info-caja">93 245 2212</div>');
			$('#info-caja').corner('5px');
			$('#info-caja').fadeIn();
		}
	});	
	$('#footer #icons #telefono-pie').mouseleave(function() {
		$('#info-caja').fadeOut(function() {
			$(this).remove();
		});
	});
	$('#footer #icons #fax').mouseenter(function() {
		if ($('#info-caja').length == 0) {
			$('#footer #icons #telefono-pie').append('<div id="info-caja">93 245 9049</div>');
			$('#info-caja').corner('5px');
			$('#info-caja').fadeIn();
		}
	});	
	$('#footer #icons #fax').mouseleave(function() {
		$('#info-caja').fadeOut(function() {
			$(this).remove();
		});
	});	
	
	
	// Detectamos si es IE.
	IE = (navigator.userAgent.indexOf("MSIE")>=0) ? true : false;
	
});

