// remap jQuery to $
(function($){})(window.jQuery);


/* trigger when page is ready */
$(document).ready(function (){

	if( $('body.page-id-187').length ) {
	
		$('.recipient-info').hide()
		
		$('#rad_to_purchaser').click(function() {
			$('.recipient-info').hide()
			$('.shipping-address').show()
		});	
		$('#rad_to_recipient').click(function() {
			$('.recipient-info').show()
			$('.shipping-address').hide()
		});
	}

	if( $('body.page-id-208').length ) {

		$('.recipient-info').hide()
		
		$('#rad_to_purchaser').click(function() {
			$('.recipient-info').hide()
			$('.shipping-address').show()
		});	
		$('#rad_to_recipient').click(function() {
			$('.recipient-info').show()
			$('.shipping-address').hide()
		});
	}
	// your functions go here

});


/* optional triggers

$(window).load(function() {
	
});

$(window).resize(function() {
	
});

*/
