

     $(function () {
			var tabContainers = $('div.tabs > div');
			tabContainers.hide().filter(':first').show();

			$('div.tabs ul.tabNavigation a').click(function () {
				tabContainers.hide();
				tabContainers.filter(this.hash).show();
				$('div.tabs ul.tabNavigation a').removeClass('selected');
				$(this).addClass('selected');
				return false;
			}).filter(':first').click();
		});

$(document).ready(function()
{
        var cat = 0;
        if(typeof(pagecategory)!= 'undefined'){
           cat = pagecategory;
        }
        $("#quickcontact :text, #quickcontact textarea , #contactform :text, #contactform textarea").labelify();

	if($("#productsearch :text").val().length==0)
	{
		$("#productsearch :text").labelify();
	}
        if(typeof(product_keys) != 'undefined' ){
            quantitySelect(product_keys);
        }
	$(".question").hover(function(){
		$(".answer", $(this)).toggle();
	}, function(){
		$(".answer", $(this)).toggle();
	});
	$("#postage").change(function() {
	    $("#update").click();
	});
})
function toBilling(){
    $('#Shipping-addressLINE1').val($('#Billing-addressLINE1').val());
    $('#Shipping-addressLINE2').val($('#Billing-addressLINE2').val());
    $('#Shipping-addressLINE3').val($('#Billing-addressLINE3').val());
    $('#Shipping-addressCITY').val($('#Billing-addressCITY').val());
    $('#Shipping-addressCOUNTY').val($('#Billing-addressCOUNTY').val());
    $('#Shipping-addressPOSTCODE').val($('#Billing-addressPOSTCODE').val());
    $('#Shipping-country_countryID').val($('#Billing-country_countryID').val());
}
