/* Shopping cart */
var cart_visible = false;
$(function(e) {
	$('#cart_button').click(function(e) {
		$cart = $('#cart');
		if(cart_visible) {
			$cart.hide();
			cart_visible = false;
			$(this).removeClass('open');
		}
		else {
			$cart.show();
			cart_visible = true;
			$(this).addClass('open');
		}
	});
});

/*####### CATEGORIES POPUP #######*/
function showHidePopup(popup_id, class_popup, fenetre_id, onglet_id){
	//Cacher les autres popup
	$(class_popup).hide();
	$(class_popup).removeClass('current_pop');
	
	//montrer le popup courrant
	$(popup_id).show();
	$(popup_id).addClass('current_pop');
	
	//Gestion active de la fenetre
	$('.sectionbackground').removeClass('sub_active');
	$('.sectionbackground_last').removeClass('sub_active');
	$(fenetre_id).addClass('sub_active');
	
	//Gestion active des onglets
	$('.sousmenu_onglets').removeClass('ongletactive');
	$(onglet_id).addClass('ongletactive');
	
}


function onChangePopupRadio(title, texte, link_path){
	//Mettre les infos
	$('div.popup.current_pop div.popup_droite h2').html(title);
	$('div.popup.current_pop div.popup_droite p').html(texte);
	
	//Changer le lien du bouton et le montrer
	$('div.popup.current_pop div.valider_popup a').attr('href', link_path);
	$('div.popup.current_pop div.valider_popup').show();	
}

function changePhotoPath(url){
	if(url != ''){
		/*
		$('#produit img').hide();
		var tmp_image = $('#produit img');
		tmp_image.attr('src', url);
		var width_img = tmp_image.width();
		var height_img = tmp_image.height();
		alert(height_img);
		var marginLeft = (455 - width_img) /2;
		var marginTop = (406 - height_img) /2;
		tmp_image.css
		tmp_image.css('margin-left', marginLeft+'px');
		tmp_image.css('margin-top', marginTop+'px');
		$('#produit img') = tmp_image;
		$('#produit img').show();*/
		
		$('#produit img').hide();
		$('#produit img').attr('src', url);
		var width_img = $('#produit img').width();
		var height_img = $('#produit img').height();
		var marginLeft = (455 - width_img) /2;
		var marginTop = (406 - height_img) /2;
		$('#produit img').css('margin-left', marginLeft+'px');
		$('#produit img').css('margin-top', marginTop+'px');
		$('#produit img').show();
	} else{
		$('#produit img').hide();
		$('#produit img').attr('src', '');
	}
	
}


function showHidePhoto(classToHide, idToShow){
	$(classToHide).hide();
	/*
	var width_img = $(idToShow+' img').width();
	alert(width_img);
	var height_img = $(idToShow+' img').height();
	var marginLeft = (455 - width_img) /2;
	var marginTop = (406 - height_img) /2;
	$(idToShow+' img').css('margin-left', marginLeft+'px');
	$(idToShow+' img').css('margin-top', marginTop+'px');
	*/
	$(idToShow).show();
}
