/* ONLOAD
--------------------------------------------------------------------------------------------------------------------------------------*/

$(function(){
	initMenu();
	
	// Input Blur Reset
	$('#s').focus(function(){
		if($(this).attr('value') == this.defaultValue) $(this).attr('value', '');
	}).blur(function(){
		if($.trim(this.value) == '') this.value = (this.defaultValue ? this.defaultValue : '');
	});
	
	if($('#fiche-produit')[0]) initTabs();
	

	$('#entretien area').click(function() {
    var slide_id = $(this).attr('href').substring(1);
    $('.slidepoint').slideUp('slow');
    $('#slidepoint'+slide_id).slideDown('slow');
	});

	$('#charpente area').click(function() {
    var slide_id = $(this).attr('href').substring(1);
    $('.accessoires').hide();
    $('#a_'+slide_id).show();

	});

	
});

/* FUNCTIONS
--------------------------------------------------------------------------------------------------------------------------------------*/

function initMenu(){
	$('#menu > li').hover(function(){
		$(this).addClass('active').find('ul').show();
	}, function(){
		$(this).removeClass('active').find('ul').hide();
	})
}

function initTabs(){
	var fiche = $('#fiche-produit');
	
	$('.tabs a', fiche).click(function(){
		fiche.find('.tabs li').removeClass('active');
		$(this).parent().addClass('active');
		
		fiche.find('.tab-content').hide();
		$($(this).attr('href'), fiche).show();
		
		return false;
	});
}

