$(document).ready(function() {
	
	/* =========================
	   FOOTER
	==========================*/
	$('#footerInner').prepend('<div id="footerBlocks"><div id="footerBlocksInner"></div></div>');
	$('#footerInner .widget').each(function(i, elmt) {
		if (i < 4) {
			$('#footerBlocksInner').append($(elmt));
		}
	});
	
	/* =========================
	   WIDGET FORMULAIRE
	==========================*/
	swap_val = [];
	$(".swap").each(function(i){
    	swap_val[i] = $(this).val();
    	$(this).focusin(function(){
        	if ($(this).val() == swap_val[i]) {
            	$(this).val("");
        	}
    	}).focusout(function(){
        	if ($.trim($(this).val()) == "") {
            	$(this).val(swap_val[i]);
        	}
    	});
	});
	
	/* =========================
	   FAMILLE CATALOGUE
	==========================*/
	$('#contentsInner .short_product').each(function(i, elmt) {
		var productHref = $('.viewProduct a', elmt).attr('href');
		$('.picture img', elmt).wrap('<a href="' + productHref + '" />');
	});
	
	
	/* ===============================
	   AFFICHAGE FAMILLE FICHE PRODUIT
	==================================*/
	$('#contentsInner .breadcrumb_navigation a').each(function(i, elmt) {
		if(i == 2)
		{
			var family = $(elmt).text();
			$('#contentsInner .widgetProduct').prepend('<h1>Collection ' + family + '</h1>');
			var subFamily = $('#contentsInner .catalog h1').text();
			$('#contentsInner .catalog h1').remove();
			$('#contentsInner .catalog .productsList').prepend('<h6>Collection ' + subFamily + '</h6>');
			$('#contentsInner .catalog .productsList').prepend('<h1>Collection ' + family + '</h1>');
		}
		if(i == 3)
		{
			var subFamily = $(elmt).text();
			$('#contentsInner .widgetProduct h1').after('<h6>' + subFamily + '</h6>');
		}
	});
	
	/* ===============================
	   BORDURE SELON MARQUE
	==================================*/
	$('#contentsInner .short_product').each(function(i, elmt) {
		var marque = $('var', elmt);
		if(marque.text() != 'Coudémail')
		{
			$('.picture img', elmt).css('border', 'solid 2px #dc67b0');
		}
	});
	
	/* ===============================
	   LIEN SUR ZOOM + D'UN PRODUIT
	==================================*/
	
	setTimeout(
		function createZoomLink()
		{
			var link = $('#productPicture a.productLightbox');
			var rel = link.attr('rel');
			var href = link.attr('href');
			var clazz = link.attr('class');
			var zoomLink = $('#productPictureZoom');
			zoomLink.attr('rel', rel);
			zoomLink.attr('href', href);
			zoomLink.attr('class', clazz);
			zoomLink.click(function(){
				$(this).lightbox.start(this);
				return false;
			});
		},
		1000
	);
	
	/* ===============================
	   ZOOM D'UN PRODUIT
	==================================*/
	
	var options = {
    	zoomWidth: 480,
        zoomHeight: 680,
        showPreload: false,
        title: false
    };
                        
    $(".jqzoom").jqzoom(options);
    
    // Recuperation de la balise src d'une image
                $('a.jqzoom').each(function() {
                        var img = $('.first img', $(this));
                                if (img.length) {
                                $(this).attr('href', $(img).attr('src'));
                                }
                });
                
    /* ===============================
	   CAPTCHA FORMULAIRE
	==================================*/
	var field = $('#captchaImage input');
	$('#captchaField').append(field);
});
