$(document).ready(function() {
	$(".roll").mouseover(function(){
		mo = $(this).attr("src");
		$(this).attr("src",$(this).attr("src").replace(/(\.png|\.gif|\.jpg)/, "_on" + "$1"));
	});
	$(".roll").mouseout(function(){
		if(typeof(mo) != "undefined") $(this).attr("src",mo);
	});

	$('a[href^="#"]').click(function(){
		$.scrollTo( $($(this).attr("href")), {speed:1000,axis:'y', queue:true} );
		return false;
	});
	$('#lightbox a').click(function(){
		window.open(this.href, 'map','width=485');
		return false;
	});

});


