/* -----------------------------------------------
              Scroll To Top
   ----------------------------------------------- */

$(document).ready(function () {
    $('.page-top').click(function () {
        $('html,body').animate({ scrollTop: 0 }, 'fast');
        return false;
    });
});

/* -----------------------------------------------
              Suckerfish-style Menu
   ----------------------------------------------- */

$(document).ready(function(){
	$("#GlobalNavi li").hover( 
		function(){ $("ul", this).slideDown("fast");},
		function() {
			if($("ul", this).is(":visible")){
				$("ul", this).slideUp("fast");
			}
		}
	);
});

/* -----------------------------------------------
               Mouse over
   ----------------------------------------------- */
   
$(function(){
    $("img.btn-on").mouseover(function(){
        $(this).attr("src",$(this).attr("src").replace(/^(.+)(\.[a-z]+)$/, "$1_on$2"))
    }).mouseout(function(){
        $(this).attr("src",$(this).attr("src").replace(/^(.+)_on(\.[a-z]+)$/, "$1$2"));
    })
})

/* -----------------------------------------------
               Sexy cycle
   ----------------------------------------------- */
$(document).ready(function(){
	$("#bookbox").sexyCycle({
		easing: 'easeInQuad',
		speed: 300,
		next: '.next2',
		prev: '.prev2',
		stop: '.prev2',
		cycle: true,
		interval: 7500
	});
});


