/* --------------------
*
*/
$(function(){
	// alert des erreurs
	$("div.form_error").parent().addClass("form_error");
	//if( $("div.form_error").get().length > 0) 
		//alert("Vous avez des erreurs dans votre formulaire !");		
});

/*----------------------
* bvi_gmap_icon()
*/
function bvi_gmap_icon() {
	var icon = new GIcon();
	icon.image = "img/structure/puce-gmap.png";
	icon.iconSize = new GSize(20,20);
	icon.iconAnchor = new GPoint(10, 10);
	icon.shadow = false;
	return icon;
}
/*----------------------
* bvi_gmap_zone()
*/
function bvi_gmap_zone(polyline, levels) {
	return {
		color: "#FF0000",
		weight: 5,
		opacity: 0.5,
		points: polyline,
		levels: levels,
		zoomFactor: 32,
		numLevels: 4
	};
}

/*----------------------
* add_to_basket
*/
function switch_basket(part, id, btn) {
	$.get("./?controller=panier&action=switch_basket&part="+part+"&id=" + id, function(data){
		if(btn) btn.innerHTML = data == "true" ? "Retirer du panier" : "Ajouter au panier";
		if(data == "true") {
			$("#inbasket").show("slow");
			alert("Le bien a été ajouté ŕ votre panier !");
		} else {
			$("#inbasket").hide("slow");
			alert("Le bien a été retiré de votre panier !");		
		}
	});
}


/*----------------------
* document_write
*/
function document_write(tag) {
	document.write(tag);
}
