function accordion(el){
	//var last = $('.ncol');
	$('.ans').hide('fast');
	
	if(!$(el).hasClass('ncol')){
		$('.ncol').removeClass('ncol');
		$(el).addClass('ncol');
		$(el).parent().children('.ans').show('fast');
	}else{
		$('.ncol').removeClass('ncol');
	}
} 
$(document).ready(function(){
	$('.ans').hide();
	$('.faq .num .que').click(function(){
		accordion(this);
		return false;
	});
	$('a[href="sendmail.php"]').click(function(){
		var geTi = $(this).attr('title');
		$.fancybox({
			'href'      : 'sendmail.php',
			'padding'   : 0,
			'ajax'      : {
						url    : 'sendmail.php',
						type   : "POST",
						data   : 'mailto='+geTi
			},
			'titleShow' : false,
			'scrolling' : false
		});
		return false;
	});
	
	$('a[href="c-sendmail.php"]').click(function(){
		var geTi = $(this).attr('title');
		$.fancybox({
			'href'      : 'c-sendmail.php',
			'padding'   : 0,
			'ajax'      : {
						url    : 'c-sendmail.php',
						type   : "POST",
						data   : 'mailto='+geTi
			},
			'titleShow' : false,
			'scrolling' : false
		});
		return false;
	});

	$('#floating-banner .close').click(function(){
		$('#floating-banner').hide('fast');
	});
	
});
