$(document).ready(function(){
	$('#dropdown').superfish({
		animation:	{opacity:'show', height:'show'},
	});
	$("img[rel]").overlay({mask:'#000'});
	$("div.relacionados-acordeon").tabs("div.rel-tab-contenido", {tabs:'img', effect:'horizontal'});
	$(".scrollable").scrollable({});
	$(".scrollPage").click(function() {
		var elementClicked = $(this).attr("href");
		var destination = $(elementClicked).offset().top;
		$("html:not(:animated),body:not(:animated)").animate({ scrollTop: destination-50}, 1000 );
		return false;
	});
});

