$(document).ready(function() {

});

//--> Shipping Billing Page Functions <--\\
function toggleInfo() {
	if(document.forms['ship_bill_address'].bill_ship_match.checked) {
		document.forms['ship_bill_address'].shipping_first_name.value = document.forms['ship_bill_address'].billing_first_name.value;
		document.forms['ship_bill_address'].shipping_last_name.value = document.forms['ship_bill_address'].billing_last_name.value;
		document.forms['ship_bill_address'].shipping_address_1.value = document.forms['ship_bill_address'].billing_address_1.value;
		document.forms['ship_bill_address'].shipping_address_2.value = document.forms['ship_bill_address'].billing_address_2.value;
		document.forms['ship_bill_address'].shipping_country.selectedIndex = document.forms['ship_bill_address'].billing_country.selectedIndex;
		document.forms['ship_bill_address'].shipping_city.value = document.forms['ship_bill_address'].billing_city.value;
		document.forms['ship_bill_address'].shipping_state.selectedIndex = document.forms['ship_bill_address'].billing_state.selectedIndex;
		document.forms['ship_bill_address'].shipping_zip.value = document.forms['ship_bill_address'].billing_zip.value;
	} else { 
		document.forms['ship_bill_address'].shipping_first_name.value = '';
		document.forms['ship_bill_address'].shipping_last_name.value = '';
		document.forms['ship_bill_address'].shipping_address_1.value = '';
		document.forms['ship_bill_address'].shipping_address_2.value = '';
		document.forms['ship_bill_address'].shipping_country.selectedIndex = 0;
		document.forms['ship_bill_address'].shipping_city.value = '';
		document.forms['ship_bill_address'].shipping_state.selectedIndex = 0;
		document.forms['ship_bill_address'].shipping_zip.value = '';
	}
}

function process_country_change(me){
	var country_name = me.name.split("_");
	var the_section = country_name[0];
	if(me.value == 'United States' || me.value == 'Canada'){
		document.forms['ship_bill_address'][the_section + '_state'].selectedIndex = 0;
	}else{
		document.forms['ship_bill_address'][the_section + '_state'].selectedIndex = 1;
	}
}

//--> Product Detail Page Functions <--\\
function swap_image(the_image, the_path, the_title){
	var the_image_link = '<img src="'+the_path+the_image+'" alt="'+the_title+'" title="'+the_title+'" />';
	$("#product_shot").html(the_image_link);
	return(false);
}
























