$(document).ready(function() {
  if (typeof jQuery.fn.facebox == 'function') {
    $('.enlarge').facebox();
  }
	
  if (typeof jQuery.fn.qtip == 'function') { 
    $('a[href][title].tip').qtip({
      content: {
         text: false // Use each elements title attribute
      },
      show: 'mouseover',
      hide: 'mouseout',
      position: {
				target: 'mouse',
        corner: {
          target: 'bottomLeft',
          tooltip: 'topLeft'
        }
      },
      style: {
				width: 180,
				background: '#d02129',
				color: '#FFFFFF',
        border: {
           width: 3,
           radius: 6,
           color: '#d02129'
        }
      }
   });
  
  }


  $("#same-as-above").click(function(){
    $('#address').val($('#home_address').val());          
    $('#suburb').val($('#home_suburb').val());          
    $('#postcode').val($('#home_postcode').val());          
    $('#state').val($('#home_state').val());


    var newShippingZone =  $('#country').val() != $('#home_country').val();
    $('#country').val($('#home_country').val());          

    if(newShippingZone)
    {
      // copied from main view... 
      var elem = $('#country');
      var form = elem.parents('form:first');
      form.submit();
    }

    return false;
  });

});

