jQuery.noConflict();
jQuery(document).ready(function() {
	var hash = window.location.hash.substr(1);
	var href = jQuery('#contenedor_contenido_inicio a').each(function(){
		var href = jQuery(this).attr('href');
		if(hash==href.substr(0,href.length-5)){
		//var toLoad = hash+'.html #contenedor_contenido';
		var toLoad = 'index.html #contenedor_contenido';
		//alert(toLoad);
		jQuery('#contenedor_contenido').load(toLoad)
		}	
	});

	jQuery('#MenuBar li a').click(function(){
								  
		var toLoad = jQuery(this).attr('href')+' #contenedor_contenido';
		jQuery('#contenedor_contenido').hide('slow',loadContent);
		jQuery('#load').remove();
		jQuery('#contenedor_contenido').append('<span id="load">CARGANDO...</span>');
		jQuery('#load').fadeIn('normal');
		window.location.hash = jQuery(this).attr('href').substr(0,jQuery(this).attr('href').length-5);
		function loadContent() {
			jQuery('#contenedor_contenido').load(toLoad,'',showNewContent())
		}
		function showNewContent() {
			jQuery('#contenedor_contenido').show('normal',hideLoader());
		}
		function hideLoader() {
			jQuery('#load').fadeOut('normal');
		}
		return false;
		
	});
	
	jQuery('#contenedor_contenido_inicio a').click(function(){
								  
		var toLoad = jQuery(this).attr('href')+' #contenedor_contenido';
		jQuery('#contenedor_contenido').hide('slow',loadContent);
		jQuery('#load').remove();
		jQuery('#contenedor_contenido').append('<span id="load">CARGANDO...</span>');
		jQuery('#load').fadeIn('normal');
		window.location.hash = jQuery(this).attr('href').substr(0,jQuery(this).attr('href').length-5);
		function loadContent() {
			jQuery('#contenedor_contenido').load(toLoad,'',showNewContent())
		}
		function showNewContent() {
			jQuery('#contenedor_contenido').show('normal',hideLoader());
		}
		function hideLoader() {
			jQuery('#load').fadeOut('normal');
		}
		return false;
		
	});


});
