<!--
function bookmarksite(title, url){
if (document.all)
window.external.AddFavorite(url, title);
else if (window.sidebar)
window.sidebar.addPanel(title, url, "")
}
// onclick="bookmarksite(document.title,document.location)"

$.preloadImages("/image/rotate-1.jpg", "/image/rotate-2.jpg", "/image/rotate-3.jpg", "/image/rotate-4.jpg", "/image/rotate-5.jpg");

function rotateImage() {
    var num = $('#gallery #background img').attr("src").match(/[0-9]/);
	num = num[0];
	if (++num == 6)
		num = 1;
	$('#gallery #background img').attr("src", "/image/rotate-" + num + ".jpg");
}

var timer = setInterval('rotateImage()', 5000);

$(document).ready(function() {
	$('.circle-nav').mouseover(function() {
		$('#gallery #background img').attr("src", $(this).find("a").attr("rel"));
        clearInterval(timer);
	});
});
-->
