		$(document).ready(function() {
			// Preload all rollovers
			$("#divNav img").each(function() {
				// Set the original src
				rollsrc = $(this).attr("src");
				rollON = rollsrc.replace('.jpg', '_hover.jpg');
				newImg = new Image(); // create new image obj
				$(newImg).attr("src", rollON); // set new obj's src
			});
			// Navigation rollovers
			$("#divNav a").mouseover(function(){
				imgsrc = $(this).children("img").attr("src");
				
				if (typeof(imgsrc) != 'undefined') {
				imgsrcON = imgsrc.replace('.jpg', '_hover.jpg');
				$(this).children("img").attr("src", imgsrcON);
				}
			});
			
			// Handle mouseout
			$("#divNav a").mouseout(function(){
				if (typeof(imgsrc) != 'undefined') {
				$(this).children("img").attr("src", imgsrc);
				}
			});
			
			
					$("#bottomNav img").each(function() {
				// Set the original src
				rollsrc = $(this).attr("src");
				rollON = rollsrc.replace('.jpg', '_hover.jpg');
				newImg = new Image(); // create new image obj
				$(newImg).attr("src", rollON); // set new obj's src
			});
			// Navigation rollovers
			$("#bottomNav a").mouseover(function(){
				imgsrc = $(this).children("img").attr("src");
				
				if (typeof(imgsrc) != 'undefined') {
				imgsrcON = imgsrc.replace('.jpg', '_hover.jpg');
				$(this).children("img").attr("src", imgsrcON);
				}
			});
			
			// Handle mouseout
			$("#bottomNav a").mouseout(function(){
				if (typeof(imgsrc) != 'undefined') {
				$(this).children("img").attr("src", imgsrc);
				}
			});
	});