// cp JavaScript Document
function cpInit(){
	//enlace a cover
	logo1 = $E('#nav-cover');
	logo2 = $E('#content h1 a');
	logo1.addEvents({
		'mouseover' : function(){logo1.setStyle('background-position', '4px 109px')},
		'mouseout': function(){logo1.setStyle('background-position', '4px -400px')}
	});
	logo2.cloneEvents(logo1);
	//enlace externo
	var enlaces = $$('a');
	enlaces.each(function(a, i){
		if(a.getProperty('rel') == "ext"){
			a.setProperty('target', '_blank');
		}
	});
	//smoothScroll
	new SmoothScroll();
}

window.addEvent('domready', cpInit);
