function clear_form(data){
	$('div#contact_form', document.getElementById('content_inner')).css('opacity',1);
	$('form#frmcontact :input').removeAttr('disabled');
	$('form#frmcontact input:text, textarea').val('');
	$('div#errorpanel').hide();
	$('div#errorpanel').clone().css({'background-image':'none', 'background-color':'#D7FFCF', 'color':'#188F00'}).text(data).prependTo('form#frmcontact').fadeIn('slow');
	setTimeout("$('div.messagebox:visible').fadeOut('slow', function(){$(this).remove();});", 2000);
}
function validate_form(el){
	if($('#name', el).val() == '' ){ $('p', 'div#errorpanel').eq(0).show();$('#name', el).focus();}else{$('p', 'div#errorpanel').eq(0).hide();}
	if($('#email', el).val() == '' ){ $('p', 'div#errorpanel').eq(1).show();$('#email', el).focus();}else{$('p', 'div#errorpanel').eq(1).hide();}
	if($('textarea#message', el).val() == '' ){ $('p', 'div#errorpanel').eq(2).show();}else{$('p', 'div#errorpanel').eq(2).hide();}
	if($(":input[value='']", el).length > 0){$('div#errorpanel', el).slideDown();return false;}else{$('div#errorpanel', el).hide();return true;}
}
$('#nav').topMenu();

$('#intro_video').coinslider({
	navigation: false,
	effect: 'straight',
	width: 360,
	height: 225
});

if(window.location.pathname.indexOf('clientes') > 0 || window.location.pathname.indexOf('customers') > 0){
	$('span.more_info').find('a').bind('mouseenter', function(){
		$(this).parent().next().slideDown();
	});
	
	$('#content_inner').find('.client-info').bind('mouseleave', function(){
		if($(this).is(':visible')){
			$(this).fadeOut();
		}
	});

	$("a[rel=makemem], a[rel=casatami], a[rel=trompo], a[rel=morgan], a[rel=sanangelin], a[rel=qualfin],"+
	"a[rel=hodoyan], a[rel=ceocsa], a[rel=radikal], a[rel=cbtis], a[rel=maskmaniac], a[rel=carlzeiss],"+
	"a[rel=hsmt], a[rel=temarry], a[rel=casefon], a[rel=revistatucasa]").fancybox({
		'titleShow'		: false,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic'
	});
}
$('a.tt', $('#footer_services')).hover(function() {
	$('#' + $(this).attr('alt'), $('div#tooltips')[0]).css({'left': $(this).position().left + 100,	'top': $(this).position().top - 160});
	$('#' + $(this).attr('alt'), $('div#tooltips')[0]).stop(true, true).slideToggle();
},function(){$('#' + $(this).attr('alt'), $('div#tooltips')[0]).fadeOut();});

$('#frmcontact').bind('submit', function(){
	if(validate_form(this)){
		$.ajax({type: "POST",
				url: "main/send_mail",
				data: $(this).serialize(),
				beforeSend: function(){
					$('#frmcontact :input').attr('disabled','disabled');
					$('div#contact_form', document.getElementById('content_inner')).fadeTo('slow', 0.3);
				},
				success: function(data){
					setTimeout('clear_form("'+data+'")', 3000);
				}
		});
	}
	return false;
});
//GA
 var _gaq = [['_setAccount', 'UA-18171306-1'], ['_trackPageview']];
(function(d, t) {
 var g = d.createElement(t),
     s = d.getElementsByTagName(t)[0];
 g.async = true;
 g.src = '//www.google-analytics.com/ga.js';
 s.parentNode.insertBefore(g, s);
})(document, 'script');

