(function( $ ){
$(document).ready(function() {
	Cufon.replace('.myriad_pro', { fontFamily: 'Myriad Pro'});
	$('#print').click(function(){							   
		window.print();
		return false;
	});
	
	$('a[rel$=\'external\']').attr("target","_blank");
	
	$('.target').attr("target","_blank");
	
	$('.arriba_button').click(function () { 
	  window.scrollTo(0,0);
	  return false;
	});
	
	if ($.browser.safari) {
		$('textarea').css('resize', 'none');
		$('input.text').css('resize', 'none');
	}
	
	$('.contenedor_fotos_thumb li a').click(function(){
		var ruta_foto_grande = $(this).attr('href');
		var nombre = $(this).attr('title');
		
		$('.contenedor_fotos_thumb li').removeClass('active');
		$(this).parent('.contenedor_fotos_thumb li').addClass('active');
		$('.content_data_foto img').attr('src',ruta_foto_grande);
		$('.content_data_foto img').attr('alt',nombre);
		$('.content_data_titulo_in h3 span').empty();
		$('.content_data_titulo_in h3 span').text(nombre);
		return false;
	});
	
	$('.imagen_hover_link').css('opacity','0.3');
	
//	Cufon.replace('#nav_top li a', { fontFamily: 'Myriad Pro', textShadow: '#fff 1px 1px', hover:true });
	
	
/*	$('.nav li').not('.active').find('a').css('opacity','0.3');*/
	
	$('.nav li').not('.active').hover(function(){
		$(this).addClass('active');
	},function(){
		$(this).removeClass('active');
	});
	
	$('#btn_registrar').hover(function(){
		$(this).css('opacity','0.9');
	},function(){
		$(this).css('opacity','1');
	});
	
});
})( jQuery );
