$(document).ready(function(){
	
	$("img.popup").each(function(){
		
		var href = $(this).attr("src").replace('/lores/','/hires/');
		var title = $(this).attr("alt");
		$(this).wrap("<a></a>")
			.parent("a")
				.attr("href",href)
				.attr("title",title)
				.attr("rel","inpage")
				.addClass("thickbox")	
	});
	
	$("ul.top > li").hover(function() {
		$(this).addClass("hover");
	}, 
	function() {
		$(this).removeClass("hover");
	});

	$("div#menu ul li").click(function() {
		document.location = $(this).children("a").attr("href");
	});
	
	$("li.photo a").addClass("thickbox").attr("rel","galleryimg");

});