/**
 * @author paul.stuart
 */
$(document).ready(function(){
	$("#menu").corner();
	
	$("#bd").corner();
	
	$("div.product").corner();
	$("div.video").corner();
	$("div.whRound").corner();
	$("#changeCurr").bind("change", AdjustCurrency);
	
	$("div.OnProd input").mouseover(function() {
		$(this).attr("src", "images/buyON.jpg");
	}).mouseout(function(){
      $(this).attr("src", "images/buyOFF.jpg");
    });

});

function AdjustCurrency(e)
{
	$(".currVal").val($(this).val());
	
	if($(this).val() == "USD")
	{
		$(".couVal").val("US");
		$("span.value1").html("9.99");
		$("span.value2").html("12.99");
		$("span.value3").html("19.99");
		$("input.value1").val("9.99");
		$("input.value2").val("12.99");
		$("input.value3").val("19.99");
	} else {
		$(".couVal").val("AU");
		$("span.value1").html("8.99");
		$("span.value2").html("11.99");
		$("span.value3").html("18.99");
		$("input.value1").val("8.99");
		$("input.value2").val("11.99");
		$("input.value3").val("18.99");
	}
}






























