//target
(function($){
$(function(){
	$('div#interviewBackNumber ul li dl dd.photo a').each(function(){
		var Href = $(this).attr('href');
		$(this).parent().parent().click(function() {
			window.open(Href,'_self');
			return false;
		});
	});
	$('div#localNav ul li dl dd.photo a').each(function(){
		var Href = $(this).attr('href');
		$(this).parent().parent().click(function() {
			window.open(Href,'_self');
			return false;
		});
	});
	
	$('div#interviewBackNumber ul li dl').hover(function(){
    $(this).css({color:'#999'});
  },function(){
    $(this).css({color:'#333'});
  });
	$('div#localNav ul li dl').hover(function(){
    $(this).css({backgroundColor:'#6bad5e',color:'#FFF'});
  },function(){
    $(this).css({backgroundColor:'#ffffff',color:'#333'});
  });
	
});
})(jQuery);


//blog monthryarchive
function PLDOWN(){
	Sel=document.PullDown.OP.selectedIndex;
	Url=document.PullDown.OP.options[Sel].value;
	top.location.href=Url;
}
