$(document).ready(function() {	
	$("#delivery-select li input").click(function() {
		$("#delivery-select li").removeClass("selected");
		$(this).parents("li").addClass("selected");
	});

	$("#shipping-select li input").click(function() {
		$("#shipping-select li").removeClass("selected");
		$(this).parents("li").addClass("selected");
	});

	$('#prod-tab-1').click(function(){
		$('#tab-desc').show();
		$('#tab-tech').hide();
		$('#tab-basic').hide();
		$('#tab-images').hide();
		$('#prod-tab-1').addClass("prod-cur");
		$('#prod-tab-2').removeClass("prod-cur");
		$('#prod-tab-3').removeClass("prod-cur");
		$('#prod-tab-4').removeClass("prod-cur");
	});

	$('#prod-tab-2').click(function(){
		$('#tab-desc').hide();
		$('#tab-tech').show();
		$('#tab-basic').hide();
		$('#tab-images').hide();
		$('#prod-tab-1').removeClass("prod-cur");
		$('#prod-tab-2').addClass("prod-cur");
		$('#prod-tab-3').removeClass("prod-cur");
		$('#prod-tab-4').removeClass("prod-cur");
	});

	$('#prod-tab-3').click(function(){
		$('#tab-desc').hide();
		$('#tab-tech').hide();
		$('#tab-basic').show();
		$('#tab-images').hide();
		$('#prod-tab-1').removeClass("prod-cur");
		$('#prod-tab-2').removeClass("prod-cur");
		$('#prod-tab-3').addClass("prod-cur");
		$('#prod-tab-4').removeClass("prod-cur");
	});

	$('#prod-tab-4').click(function(){
		$('#tab-desc').hide();
		$('#tab-tech').hide();
		$('#tab-basic').hide();
		$('#tab-images').show();
		$('#prod-tab-1').removeClass("prod-cur");
		$('#prod-tab-2').removeClass("prod-cur");
		$('#prod-tab-3').removeClass("prod-cur");
		$('#prod-tab-4').addClass("prod-cur");
	});
});

function populateShippingByCountry(ad_country_id, del_ad_id) {
	location.href = "checkout1-midpage?ad_country_id="+ad_country_id+"&del_ad_id="+del_ad_id;
}
