src_orig = '';

$(document).ready(function(){
	attachRollOverEventc("img.prod_thumb");
	src_orig = $('#big_picture').attr("src");
	titre_orig = $('#titre').html();
});

function changer_src_orig()
{
	src_orig = $('#big_picture').attr("src");
	titre_orig = $('#titre').html();
}

attachRollOverEventc = function(imageId){
	$(imageId).mouseover( function(){ $('#big_picture').attr("src", $(this).attr("src").split('_t').join(''));$('#titre').html($(this).attr("alt")); } );
	$(imageId).mouseout( function(){ $('#big_picture').attr("src", src_orig );$('#titre').html(titre_orig)} );
}

function change_content(code_produit, alt_text)
{
		changer_src_orig();
		
		//$('#titre').fadeOut('fast', function(){$('#titre').html(alt_text+' - '+code_produit);});
		
		//$('#titre').fadeIn('fast');
		
		$('#big_picture').attr("src", 'images/products/'+code_produit+'.jpg');
		$('#big_picture').attr("alt", alt_text);
		$('#big_picture').attr("title", alt_text);
}

function switch_pages(page_to)
{
	if(page_to == 2)
	{
		$('#prod_page_1').fadeOut("fast", 
		function(){$('#prod_page_2').fadeIn("fast")}
		);
		
		$('#lnk_page').attr('href', 'javascript:switch_pages(1)')
	}
	else if(page_to == 1)
	{
		$('#prod_page_2').fadeOut("fast", 
		function(){$('#prod_page_1').fadeIn("fast")}
		 );
		$('#lnk_page').attr('href', 'javascript:switch_pages(2)')
	}
}