// JavaScript Document

	// 1. マウスオーバーで画像を変更

$(function(){

	$('a img').hover(function(){

        $(this).attr('src', $(this).attr('src').replace('_on', '_off'));

		}, function(){

        	if (!$(this).hasClass('currentPage')) {

        	$(this).attr('src', $(this).attr('src').replace('_off', '_on'));

        }

   });

});
// 3. ページトップへスクロールする

$(function(){

     $("#toTop a").click(function(){

     $('html,body').animate({ scrollTop: $($(this).attr("href")).offset().top }, 'slow','swing');

     return false;

     })

});



var name = "#sidebox";
var menuYloc = null;
$(function(){
	menuYloc = parseInt($(name).css("top").substring(0,$(name).css("top").indexOf("px")));
	$(window).scroll(function () { 
		offset = menuYloc+$(document).scrollTop()+"px";
		$(name).animate({top:offset},{
			duration:350,
			queue: false
		});
	});
}); 

//女の子詳細

	var w = 732;
	var h = 810;

	function winOpen(id){
		window.open('/sys/girl_pc.php?id='+id,'','width='+w+',height='+h+',scrollbars=yes');
	}
	

