// JavaScript Document

$(function() {
	$.nyroModalSettings({
		debug: false,
		type: 'iframe',
		bgColor: '#2274b4',
		width: 600,
		height: 300,
		showloading: true,
		endShowContent: function(elts, settings) {
			$('.resizeLink', elts.contentWrapper).click(function(e) {
				e.preventDefault();
				$.nyroModalSettings({
					width: Math.random()*1000,
					height: Math.random()*1000
				});
				return false;
			});
		}
	});

	function preloadImg(image) {
		var img = new Image();
		img.src = image;
	}

	preloadImg('/images/orderentry/ajaxLoader.gif');
	preloadImg('/images/orderentry/prev.gif');
	preloadImg('/images/orderentry/next.gif');

});
