// add class to show js enabled (all javascript enabled css styles can be prepended with html.js)
$('html').addClass('js');

$(document).ready(function(){
	
	// find all the input elements with title attributes (jquery.hint)
	$('input[title!=""]').hint();
	
	$('body#body-checkoutPayment #basketNavtop button').click(function(){
		$('#checkout_payment').submit();
	});
	
	$('body#body-checkoutPaymentAddress #basketNavtop button').click(function(){
		$('#checkout_confirmation').submit();
	});
	
});