$(document).ready(function() {
						   
	/** preload rover image **/
	$(".rover").preload({
		find: ".gif",
		replace: "_o.gif"
	});

	/** highlighted menu item **/
	$(".highlight").each(
		function (){
			$(this).children().removeClass("rover");
			s = $(this).children().attr("src").replace(/\.(.+)$/i, "_o.$1");
			$(this).children().attr("src", s);
		}
	);


	/** rollover image **/
	$(".rover").hover(function() {
        s = $(this).attr("src").replace(/\.(.+)$/i, "_o.$1");
        $(this).attr("src", s);
    }, function() {
        s = $(this).attr("src").replace(/_o\.(.+)$/i, ".$1");
        $(this).attr("src", s);
    });
	
	

	
	/****/
	$("input[class='setwidth']").attr("height", "15");
	$("input[class='setheight']").attr("width", "250");
	$("input[class='setinput']").attr("height", "15");
	$("input[class='setinput']").attr("width", "250");


	return false;
	
});


