$(document).ready(function() {
	
	if($('#NewCustomerContinue a').length > 0) {
		$("#NewCustomerContinue a").html('Jatka rekisteröitymiseen');
	}
	
	if($('#product .images').length > 0) {
		$('#product .images .ProductThumbnail').colorbox();
		$('#product .images .ProductImage').colorbox();
	}
	
	if($('.back').length > 0) {
		$('.back').removeClass('hide');
		$('.back a').click(function() {
			history.go(-1);
		});
	}

});

