var bkNode = '';
changeMagasin = function(obj,num,maid){

	$('#p'+num).show();

}

changeCat = function(obj,catid,selectTxt){


}

restoreMag = function (num){
	$('#p'+num).hide();
	//$('#info-commerce').html(bkNode);
	
	
}


onFocusNewsletter = function (el){

	if(el.value == $(el).next().html())	{
		el.value = '';
	}
	
}

onBlurNewsletter = function (el){
	
	if(el.value == '') {
		el.value = $(el).next().html();
	}
	
}

onSubmitNewsletter = function (url){

	$.post(url, jQuery.param({form:$('#inscription').serialize()}),function(data){
		var ret = eval('(' + data + ')');
		
		if($('#msgNewsletter').length>0){
			$('#msgNewsletter').html(ret[1]);
		}else{
			$('#inscription').prepend($('<p style="margin-left:20px;margin-bottom:10px;color: #ED1C24;font-style: italic;" id="msgNewsletter">' + ret[1] + '</p>'));
		}
		
		if(ret[0]==true){

		}else{
			$('#inscription')[0].reset();
			setTimeout('$.colorbox.close();',3000);
		}
		
		
	});

}




