// last update 2009-09-15
// COPYRIGHT(C)www.diane-o.com.ALL RIGHTS RESERVED.
// Editor - A.W.

$(document).ready(function() {
						   
	$("#photo_sub_navi")
	.css("border-left","#666 1px solid")
	.css("padding","0 0 0 0.4em")
	$("p.link_page").css("display","none")
	
	$(".contents_list:has(a[@href^='http://'])").addClass("exlink").removeClass("contents_list");
	$(".contents_list").click(function() {
	var l_anchor = this.getElementsByTagName("a");
	window.location = l_anchor[0].href;
	return false;
	});
	$(".exlink").click(function() {
	var e_anchor = this.getElementsByTagName("a");
	window.open(e_anchor[0].href, '_blank');
	return false;
	});
	
	$(".contents_list,.exlink").hover(function(){
	$(this).addClass("box_hover");
	},function(){
	$(this).removeClass("box_hover");
	});
	
});

$(function(){
   $('a[@href^="#"]').click(function(){
		$($(this).attr("href")).ScrollTo(1000, 'easeout');
		return false;
	});
})

