function preloadImages() {
	//preload the hover images
	var strImagePath = '/templates/sib01_content/images';
	$.preloadImages(	strImagePath + "/quickeasy_up.jpg",
						strImagePath + "/contact_up.jpg",
						strImagePath + "/order_now_up.jpg"
						);
	$.preloadImages(	strImagePath + "/auger_up.gif",
						strImagePath + "/contentwindow.gif",
						strImagePath + "/engine_up.gif",
						strImagePath + "/itrlogo_up.gif",
						strImagePath + "/leading_edge_up.gif",
						strImagePath + "/reamer_up.gif",
						strImagePath + "/skid_plate_up.gif",
						strImagePath + "/spring_up.gif"
						);
	$.preloadImages(	strImagePath + "/contentwindow.gif",
						strImagePath + "/auger.jpg",
						strImagePath + "/engine.jpg",
						strImagePath + "/leading_edge.jpg",
						strImagePath + "/reamer.jpg",
						strImagePath + "/skid_plate.jpg",
						strImagePath + "/spring.jpg"
						);
	
	strImagePath = '/templates/sib01_content_large/images';
	$.preloadImages(	strImagePath + "/contentwindow.gif"
						);

}

function init() {
	$('#triggers a').hover(function() {
		$('#drill img').not('#' + this.id.substr(8)).fadeOut(125);
	}, function () {
		$('#drill img').fadeIn(125);
	});
	
	preloadImages();
}

$(document).ready(init);
