// JavaScript Document
$(function(){
	//($('#content .center li').length>1)?2:0
	$('.scroll').jScrollPane();
	$('.picwrap').bind('mouseenter',function(){
		$('.pic',$(this)).animate({opacity:1});
	})
	$('.picwrap').bind('mouseleave',function(){
		$('.pic',$(this)).animate({opacity:0.5});
	});
});
