

$(document).ready(function() {
	
	
	$(".stamp_bottom .button").mouseover(function(e) {
		$(this).find(".arrow").everyTime(10, function() {
			
			$(this).animate({"right": "15px", "opacity": 0}, "slow").animate({"right": "40px","opacity": 0.1}, 0).animate({"right": "25px", "opacity": 1.0}, "slow");
			
		})
	}).mouseout(function(e) {
		$(this).find(".arrow").stop(true).stopTime().animate({"right": "25px", "opacity": 1.0}, 0);
	}).click(function(e) {
		window.location = $(this).find("a:first").attr("href");
	})
	

	
	var hash = window.location.hash.replace(/\#/,'')
	if(hash) {
		if($("#tab_" + hash)) {
			$(".tabs div").hide()
			$(".tabs #tab_" + hash).show()
			$(".tab_nav li").removeClass("on")
			$("#nav_" + hash).parent().addClass("on")
		}
	} 
	
	
	$("span.hint, #tooltip").mouseover(function(e) {
		$("#tooltip").show()
		if($.browser.msie && $.browser.version.substr(0,1) == "6") {
			$("#title_select").hide();
		}
	}).mouseout(function(e) {
		$("#tooltip").hide()
		if($.browser.msie && $.browser.version.substr(0,1) == "6") {
			$("#title_select").show();
		}
	})
	
	$(".scrollpane").jScrollPane({scrollbarWidth: 8});
	
	$(".gallery .thumb img:nth-child(1)").addClass("first")
	$(".gallery .thumb img:nth-child(5)").addClass("first")
	$(".gallery .thumb img:nth-child(4)").addClass("last")
	$(".gallery .thumb img:nth-child(8)").addClass("last")
	
	$(".gallery .thumb img").click(function(e) {
		$(".gallery .photo div").hide()
		$("#" + $(this).attr("id").replace(/small/,'big')).show()
	})
	
	$(".tab_nav a").click(function(e) {
		$(".tabs div").hide()
		$(".tabs #" + $(this).attr("id").replace(/nav/,'tab')).show()
		$(".tab_nav li").removeClass("on")
		$(this).parent().addClass("on")
			
	})
	
})





