$(function(){
	//ウィンク効果
	$('#contents a img:not([class="no"])').hover(function(){
		$(this).css({
			opacity: '0.2',
			filter: 'alpha(opacity=20)'
		});
		$(this).fadeTo('slow',1.0);
	});

	
	$('a img[class="no"]').hover(function(){
		$(this).css({
			opacity: '1',
			filter: 'alpha(opacity=100)'
		});
	});
	//var pageAry = document.URL.split('/');
	//var pageName = pageAry.pop();
	var pageName =  document.URL;
	if(pageName == 'http://www.bananakids.jp/'){
		$('#news a').facebox();
	}
});
