//フローラルデコアン　javascript
/*
#pg0 #menu .pg0 a,
#pg1 #menu .pg1 a,
#pg2 #menu .pg2 a,
#pg3 #menu .pg3 a,
#pg4 #menu .pg4 a,
#pg5 #menu .pg5 a
*/
jQuery.fn.extend({
	scrollTo : function(speed, easing) {
		if(!$(this)[0].hash || $(this)[0].hash == "#") {
			return false;
		}
		return this.each(function() {
			var targetOffset = $($(this)[0].hash).offset().top;
			$('html,body').animate({scrollTop: targetOffset}, speed, easing);
		});
	}
});
function wo(o)
{
	window.open(o ,"_blank");
}
$(function(){
	$('a[href*=#]').click(function() {
			$(this).scrollTo(800);
			return false;
		});
	$("a[rel^='prettyPhoto']").prettyPhoto();
});

