
$(document).ready(function(){
jQuery('#photoNews li img').bind('mouseenter',function(){
$(this).parent().parent().addClass("big");
$(this).parent('a').animate({ width : 110, height : 73, top:-7, left:-10},100);
$(this).animate({ width : 110, height : 73},100);
var thisTilte = $(this).attr('alt');
$(this).parent('a').after('<span class="photoTitle">'+thisTilte+'</span>');
});
jQuery('#photoNews li img').bind('mouseleave',function(){
$(this).parent().parent().removeClass("big");
$(this).parent('a').animate({ width : 90, height : 60, top:0, left:0 },100);
$(this).animate({ width : 90, height : 60},100);
$('.photoTitle').hide();
});
jQuery('#mapList li:last').css('border','none');
jQuery('.profile:not(div:last)').addClass('border');
jQuery('#listedSeclet p').bind('mouseenter',function(){
jQuery('#listedSeclet ul').css('left' , '0');										   
});
jQuery('#listedSeclet ul').bind('mouseleave',function(){
jQuery('#listedSeclet ul').css('left','-10000px'); 				   
});
// focus‚É‘Î‰ž
jQuery('#listedSeclet li a ').focus(function(){
jQuery('#listedSeclet ul').css('left','0'); 
});
jQuery('#listedSeclet li a ').blur(function(){
jQuery('#listedSeclet ul').css('left','-10000px'); 
});

baloonClass ='';
jQuery('body').append('<div id="relative"><div class="inner"></div></div>');
for ( i=1; i < 9; i++ ){
jQuery('#relative .inner').append('<img src="/shimbun/images/baloon0'+ i + '.png" class="pfix imgover kwdBaloon" id="bl0' + i + '" alt="" />');
}
if ($.browser.msie && $.browser.version <= 6){
DD_belatedPNG.fix('.pfix');
}

jQuery('#keyword a').hover(function(){
	baloonClass = $(this).attr('class');
	$('#' + baloonClass).show();
},function(){
	$('#' + baloonClass).hide();
});


jQuery('.columnList , .itemList').each(function(){
	jQuery('li:last, .left li:last, .right li:last',jQuery(this)).css('border','none');
}) 
jQuery('.itemList li:last').css('border','none');
});


