$(document).ready(function () {
	$("#h_login").click(function () {
		window.open("https://r-system1.com/", null,"menubar=yes,toolbar=yes,location=yes,status=yes,resizable=yes,scrollbars=yes");
	});
});



/* AnimeScroll
=========================================== */

jQuery.easing.quart = function(x, t, b, c, d){
	return -c * ((t=t/d-1)*t*t*t - 1) + b;
};

var aniscroll = {
	setInit : function(){
		$('a[href*=#]').click(function(){
			if(location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname){
				var $target = $(this.hash);
				$target = $target.length && $target || $('[name='+this.hash.slice(1)+']');
				if($target.length){
					var targetOffset = $target.offset().top;
					var targetTag = navigator.appName.match(/Opera/)? "html" : "html,body";
					$(targetTag).animate({scrollTop: targetOffset}, 'quart');
					return false;
				}
			}
		});
	}
}


/* ========================================
 * START
=========================================== */

$(document).ready(function(){

	// AnimeScroll
	aniscroll.setInit();

});

