var t;
var timeout = 6500;

$(document).ready(function(){
	if ($('#map').length > 0) {

	    $('.asunto').change(function(){
	      	var asunto = '';
			var i = 0;
	      	$('.asunto:checked').each(function(){
				if (asunto != '') {
					asunto+=", ";
				}
				asunto += $(this).attr('name');
	      	});

	      	$('#asunto').val(asunto);
	    });

		$("a.dir").fancybox({
      		'autoDimensions' : false,
      		'width' : 600,
      		'height': 450,
      		'titleShow' : true
    	});
	}
	if ($('#clientes').length > 0) {
		$('a.premios').fancybox();
	}
	if ($('#slider').length > 0) {
		$('.kwicks').kwicks({   
			min : 38,
			sticky : true
		});
		// autoslide
		$('#slider').mouseenter(function(){
			clearTimeout(t);
		});
		$('#slider').mouseleave(function(){
			t = setTimeout(function(){switch_panel();}, timeout);
		});

		t = setTimeout(function(){switch_panel();}, timeout);
		
		function switch_panel() {
			var target = $('#slider li.active').next();

			if (target.length == 0) {
				target = $('#slider>ul>li').eq(0);
			}
			
			target.mouseover().mouseleave();
		}
	}
	if ($('a.email').length > 0) {
		var mail = $('a.email').html().replace('(DOT)','.').replace('(AT)','@');
		$('a.email').html(mail).attr('href','mailto:'+mail);
	}
	if ($.browser.msie) {
		$('.round').prepend('<i class="tl"></i><i class="tr"></i><i class="bl"></i><i class="br"></i>');
		$('.round_top').prepend('<i class="tl"></i><i class="tr"></i>');
	}
	if ($('#tabs').length > 0) {
		$('#tabs a').click(function(){
			var i = $(this).attr('rel');
			$('#tabs li').removeClass('active');
			$(this).parent().addClass('active');
			$('.tab_content').hide();
			$('#'+i).show();
			return false;
		});
	}
	if ($('#form_contacto').length > 0) {
		$('#form_contacto').validate();
	}
});
