;(function($) {
	$(function(){
		var settings = {
			'scrollbarWidth' : 7,
			'scrollbarMargin' : 0,
			'reinitialiseOnImageLoad' : true
		};
		
		var he = $('.HomeContent').css('padding', '0').height();
		if(he){ $('.HomeContent').css('paddingTop', Math.round(($('#Content').height() - he) * 0.5)); }
		
		var initScroll = function(){
			$('.PageContent').jScrollPane(settings);
		}
		
		$('.articlefield .checkbox').change(function(evt){
			if($(this).attr('checked')){
				$(this).nextAll('input').attr('disabled', false).parent().removeClass('disabled');
			} else {
				$(this).nextAll('input').attr('disabled', true).parent().addClass('disabled');
			}
		}).change();
		
		$('#Form_OrderForm input').blur(function(){
			window.setTimeout(initScroll, 50);
		});
		
		initScroll();
	});
})(jQuery);