$(function() { 
   $("div.scrollable").scrollable({
		items : '.texts',
		size: 1,
		vertical: true
	})/*.autoscroll({
		autoplay: false,
		interval: 6000,
		autopause: true
	})*/;
   
   
   $('.scrollPanel').scrollable({
		items: '.items',
		speed: 1400,
		loop:true,
		size: 1
	}).navigator().autoscroll({
		autoplay: true,
		interval: 19000,
		
		autopause: false
	});
   
	$('a.verMapa').fancybox({
		'frameWidth'		:	960,
		'frameHeight'		:	500,
		'zoomSpeedIn'		:	500,
		'zoomSpeedOut'		:	500,
		'overlayShow'		:	true,
		'overlayColor'		: '#000'
	});   
	
	
	if($('#faqs').length > 0){
		$('#faqs dd').hide();
		$('#faqs dt')
		.css('cursor', 'pointer')
		.click(function(){
			$(this).next().slideToggle()
		})
		.hover(
		function(){
			$(this).css({
				backgroundColor:'#EBEBEB', borderColor: '#aaa', borderStyle:'solid', borderWidth:'1px'
			})
		},
		function(){
			$(this).css({
				padding: '6px', backgroundColor:'transparent', border:'none', borderWidth:'0px'
			})
		});
	}
}); 


