Shadowbox.init({
	players:  ['img', 'html', 'iframe', 'qt', 'wmp', 'swf', 'flv'],
	overlayColor: '#000',
	overlayOpacity: 0.8
});

function openShadowbox(content, player, title, width, height){
	Shadowbox.open({ content: content, player: player, title:  title, width:	width, height:	height });
}

$(function() {
	$('ul.user_interaction').carouFredSel({
		auto: true,
		pauseOnHover: true,
		items: 1,
		scroll : {items: 1,	effect: "slideTo", duration: 1000, pauseOnHover: true	},
		prev: ".prev",
		next: ".next"
	});
});

function validar(formulario) {
	if((formulario.nombre.value == "")||(formulario.asunto.value == "")||(formulario.telefono.value == "")||(formulario.comentario.value == "")) { 
		alert("Debe de rellenar los campos marcados con (*)");
		return false; 
	}
	else {
		return true;
	}
} 	
		
function quit(objeto) { $(objeto).fadeOut(0); }

function fadeout(objeto) { $(objeto).fadeOut(200); }

function fadein(objeto) { $(objeto).fadeIn(200); }


function prensa(objeto1, objeto2) {
	$(objeto1).fadeOut(0);
	$(objeto2).fadeIn(200);
}




