
// TRASPARENT IE6
$(function() {
	$('#logo, .separa, .arrow-left, .arrow-right').ifixpng(); 
});


// PRIVACY LINK
$("a[class*='cat_12']").attr('href', 'javascript:;');
$("a[class*='cat_12']").click(function(){
	window.open("/themes/hotel_bonotto/static/privacy.html","popup","scrollbars=yes,width=724,height=453,top=50,left=23").focus
	return false;
});


// NASCONDO TUUTE LE RISPOSTE DELLE FAQ
$(".faq_box .answer").each(function() {	
	$(this).css("display","none");
});


// VISUALIZZO LA RISPOSTA DELLA FAQ
$(".faq_box .body a").click(function(){
	// nascodo tutte le risposte aperte
	//console.log("qui");
	$(".faq_box .answer").each(function() {	
		$(this).hide(1000);
	});
	var hidden_id = parseInt($(this).parent('.body').attr('id').replace('h_', ''), 10); 
	$(".faq_box #risp_" + hidden_id).show(500);
	return false;
});

$(function() {
	start(); 
});