jQuery(document).ready(function($){
		if($('body').hasClass('review_form'))
		{
			window.scroll(0,0);
		}
		$('#gc_history').click(function(){
				$('.gift_history').slideToggle(400);
				$('.send_gift').hide(400);
			});
		$('#send').click(function(){
				$('.send_gift').slideToggle(400);
				$('.gift_history').hide(400);
			});
		$('#send_GC').click(function(){
				$('#send_GC_form').submit();
			});
		if($('.note-msg').html() == 'There are no products matching the selection.')
		{
			$('.main_float').removeClass('main_float');
		}
		$('#diff').change(function(){
			if($(this).is(':checked'))
			{
				$('#shipping-new-address-form input').val('');
				$('#shipping-new-address-form select').val('');
				document.getElementById('shipping:region_id').onchange();
				document.getElementById('shipping:country_id').value='US';
				var w = document.getElementById('shipping:country_id').selectedIndex;
				var selected_text = document.getElementById('shipping:country_id').options[w].text;
				document.getElementById('select456').innerHTML = selected_text;
				document.getElementById('shipping:country_id').onchange();
			}
		});
});
