	
	$(document).ready(function() {	

		$("#ShopPayment").bind("change", function(obj){
			$('.paymenthint').hide();
			$('#'+$(this).val()).show();
			return false;
		});	

		$("a.helptopic").bind("click", function(obj){
			
			var topic = $(this).attr('href').replace('#','');		
			
			
			$('.helpcontents h5').hide();
			$('.helpcontents p').hide();
			$('.helpcontents ul').hide();			
			
			$('#helpguide').html( $(this).parents('ul').attr('class') + ' &gt; ' + $('.helpcontents h5.'+topic).html() );
			
			$('.'+topic).show();
			
			return false;
		});	
		
	});
	