$(document).ready(function() {
	
	$(".rollover").hover(
		function(){
			if($(this).attr("src").indexOf("buttons/rollovers") == -1) {
				var newSrc = $(this).attr("src").replace("buttons/","buttons/rollovers/");
				$(this).attr("src",newSrc);
			}
		},
		function(){
			if($(this).attr("src").indexOf("buttons/rollovers/") != -1) {
				var oldSrc = $(this).attr("src").replace("buttons/rollovers/","buttons/");
				$(this).attr("src",oldSrc);
			}
		}
	);
	
	var myInterval = window.setInterval(function (a,b) {

 		tempElement = $(".photolist li:first");
 		tempContent = tempElement.html();
 		$("#photoframe").html(tempContent);
 		$(".photolist li:first").remove();
 		$(".photolist").append(tempElement);

	},10000);
	
 });
