$(document).ready(function() {
	$("div.menu_options").hide();
	$("div.thumbnail_container").hover(
		function() {
			$(this).children("div.menu_options").show();
		},
		function() {
			$(this).children("div.menu_options").hide();
		}
	);
	$("div.main > img").hide();
	$("div.main > img[rel='1']").show();
	$("div.thumbnail_container > img").click(function(){
		var number = $(this).attr("rel");
		$("div.main > img").hide();
		$("div.main > img[rel='" + number + "']").show();
	});
	$("div.main > img").hover(
		function() {
			$("span#caption").html($(this).attr("alt"));
			$("span#caption").show()
		},
		function() {
			$("span#caption").hide()
		}
	);
});

