// COMPORTAMIENTO INICIO

function initInicio(){
	$('.capsula').css('cursor', 'pointer')
		.click(function(){
		document.location = $(this).find('a').attr('href');
	});
}

function swf(){
	var so = new SWFObject("img/portada.swf", "portada_", "550", "410", "8", "#FFFFFF");
	//var so = new SWFObject("img/portada/verteysentirte.swf", "portada_", "550", "600", "8", "#FFFFFF");
	so.addParam("wmode", "transparent");
	so.write("imagen");
}

$(document).ready(function(){
	initInicio();
	swf();
});