// JavaScript Document

$(document).ready(function(){
						   
			$('.copyBox').bind('click', copyData);		   
						   
			function copyData(){
				
				var bill = $('.billing').find('input');
				var bSelect = $('.billing').find('select');
				var ship = $('.shipping').find('input');
				var sSelect = $('.shipping').find('select');
				
				if(this.checked){

					for(i=0; i<bill.length; i++){
						
						
						ship[i].value = bill[i].value;

					}
					
					sSelect[0].selectedIndex = bSelect[0].selectedIndex;
	   
				}
				
				if(this.checked != true) {

					for(i=0; i<ship.length; i++){
						
						
						ship[i].value = '';

					}
				
					sSelect[0].selectedIndex = 0;
					
				}
	   
			}
						   
});
