			function my_kwicks(){
				$('.kwicks').kwicks({
					duration: 300,   
					max: 400,  
					spacing:  0  
				});
			}  

			function my_email() {
				$('a.email').each(function(){
				e = this.rel.replace('/','@');
				this.href = 'mailto:' + e;
				$(this).text(e);
				});				
			}


$(document).ready(function(){
						 
my_kwicks();
my_email();
$('.tooltip').tooltip();
$('.fancy').fancybox({
					'hideOnContentClick': false,
					'frameHeight' : 400,
					'frameWidth' : 500,
					'overlayOpacity': .5
					 });
$("#aseguradoras").jCarouselLite({
		vertical: true,
		hoverPause:true,
		visible: 5,
		auto:500,
		speed:1000
	});

$(".art-button-wrapper").hover(
  function () {
	$(this).addClass("hover");
  },
  function () {
	$(this).removeClass("hover");
  }
);

});
