/****************************************
*                                       *
*   Copyright 2010 - ComercialNim       *
*   Disseny: Osona Disseny Web          *
*   info@osonadissenyweb.com            *
*                                       *
****************************************/

$(document).ready(function(){
	//Formulari contacte rāpid
	/*
	$('#crnom').focus(function(){
		if ($(this).val() == "El teu nom..."){
			$(this).val("");
		}
	});
	$('#cremail').focus(function(){
		if ($(this).val() == "El teu email..."){
			$(this).val("");
		}
	});
	$('#crtelefon').focus(function(){
		if ($(this).val() == "El teu telčfon..."){
			$(this).val("");
		}
	});
	*/

	//Buidar carro
	$('#lbuidar').click(function(){
		$.ajax({
		   type: "POST",
		   url: "core/php/afegir-producte.php",
		   data: "action=buidar",
		   success: function(msg){
			 $('#carrocompra').html(msg);
		   }
		});
	});

	//LOGOUT
	$('.lsortir').click(function(){
		ruta = 'core/php/logout.php';
		$.ajax({
			type: "POST",
			url: ruta,
			success: function(msg){
				window.location.href = 'http://www.comercialnim.com';
			}
		});
	});

	if ($('#avisdivisibles')){
		setInterval("highlightBg()",4000);
	}

	//Recomanar a un amic
	$('#lrecomanar').colorbox({height: '550px', width: '400px'});
});


function highlightBg(){
	$('#avisdivisibles').effect("highlight", {color:"#F5E842"}, 3000);
}

function setBuidarCarro(){
	$('#lbuidar').click(function(){
		$.ajax({
		   type: "POST",
		   url: "core/php/afegir-producte.php",
		   data: "action=buidar",
		   success: function(msg){
			 $('#carrocompra').html(msg);
		   }
		});
	});
}

//Funciķ per enviar l'enllaį a recomanar un amic
function recomanarAmic(){
	if ($('#remail').val() != "" && $('#rnom').val() != "" && $('#rmissatge').val() != ""){
		params = $('#formrecomanar').serialize();
		$.ajax({
		   type: "POST",
		   url: "core/php/recomanar.php",
		   data: params,
		   success: function(msg){
			 $('#recomanar').html(msg);
		   }
		});
	}
}
