$(function(){
	$(document).ready(function(){
		$(".producto_imprenta").hide();
		$("#gastosEnvioInfo").hide();
		$(".gastosPaisInfo").hide();
		$(".precios").hide();
		var currentProduct = "";
		$("div[product]").click(function(){
			if( currentProduct!=$(this).attr( "product" ) ){
				currentProduct = $(this).attr( "product" );
				var showContent = $( "#"+ currentProduct )
				showContentHTML = showContent.html();				

				
				$("#productContent").fadeOut("fast", function(){
					$(this).html( showContentHTML ).append( $("#gastosEnvioInfo").html() );
					$(".precios").slideUp("def");
				}).fadeIn("fast", function(){
					$(this).find(".precios").html( $("div#price_"+ currentProduct).html() );
					$(this).find(".precios").slideDown("slow");
				});
								
			}
		});

		var combo = document.forms["gastosEnvioForm"].countrySelectableList;
		for( i=0; i<combo.length; i++ ){
			if( combo[i].value==$("#actualCountry").val() ){
				showCountryInfo( $("#actualCountry").val() );
			}
		}

	});
});

var currentCountry = "";
function showCountryInfo( country ){
	currentCountry = country;
	if( currentCountry!="" ){
		$("#currentCountryInfo").fadeOut("def", function(){
			$(this).html( $("#gastos_"+ currentCountry ).html() );
		}).fadeIn("def");
	}
}
