


/*	hideFocusBorders("div");
	
	
	$$('#info').focus(false);
	
	// Disables focus for chosen element - IE only
	function hideFocusBorders() {
		
		var el = arguments[0];
		
		
		$(el).each(function() {
			this.onfocus = function stopLinkFocus(){this.hideFocus=true;};			  
								  
		});
	
	}
		
	function printpage() {
		window.print();
	}
	
	/******************   Checks to make sure that the quantity is a whole number   ****************/
	/*$$('.quantity').blur(function() {
		var quantity = $(this).val();
		var otherNum = (int)quantity;
								 
		if (quantity != (int) quantity)	 {
			alert("Quantity must be a whole number.");
			jQuery(this).val(ceil(quantity));
		}
	})*/
jQuery.noConflict();

jQuery(document).ready(function(){


	hideFocusBorders("div");
	
	jQuery('#info').focus(false);
	
	// Disables focus for chosen element - IE only
	function hideFocusBorders() {
	
		var el = arguments[0];
	
		jQuery(el).each(function() {
			el.onfocus = function stopLinkFocus(){this.hideFocus=true;};
		
		});
	}
	
	
	/****************** Checks to make sure that the quantity is a whole number ****************/
	jQuery('.quantity').blur(function() {
		var quantity = jQuery(this).val();
		
		if (quantity != "") {
			if (quantity != parseInt(quantity)) {
				alert("Quantity must be a whole number.");
				jQuery(this).val(Math.ceil(quantity));
			}
		}
	});

});

/*********************   Normal Javascript -- No jQuery   ********************/
function printpage() {
		window.print();
	}