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