$(document).ready(function(){
	if ($('#flash_movie').length) {
		$('#img_grande').hide();
		$('#img_grande').click(function(){
			$('#img_grande').fadeOut('slow');
			$('#flash_movie').fadeIn('slow');
		});
	}
	
	$('#imgs-pequenas img').click(function(event){
		$('#flash_movie').fadeOut('slow');
		$('#img_grande').fadeIn('slow');
		
		var dx = '';
		
		$('#imgs-pequenas img').each(function(index){
			if ($(this).attr('src') == $(event.target).attr('src')) {
				dx = index*(-276) + "px";
				$('#img_grande div').animate({left: dx}, 'slow');
			}
		});
	});
	
	$altura=0;
	$('.prod_descricao').each(function(index) {
		$alt_ini = $(this).height();
		if ($alt_ini > $altura) {$altura = $alt_ini;}
	});
	$('.prod_descricao').css('height', $altura);
	
	
	$('#distrib a').click(function(event) {
		event.preventDefault();
	});
	$('#distrib a').click(function(){
		$.get('scripts/distribuidores_dados.php', {'regiao': $(this).attr('name')}, function(data) {
			$('#endereco').html(data);
		});	
	});
	


});
