jQuery().ready(function (){
    if(jQuery('#search').val()=='')
		jQuery('#search').val('Search Book');
        
		//Share links
		jQuery('.sharebuzz').click(function(){
			openWindow('http://www.google.com/buzz/post?url='+location.href,'Share on Google Buzz');
		});
		
		jQuery('.sharetwitter').click(function(){
			openWindow('http://twitter.com/share?original_referer='+location.href,'Share on Twitter');
		});

		jQuery('.sharefacebook').click(function(){
			openWindow('http://www.facebook.com/sharer.php?u='+location.href,'Share on Facebook');
		});
		
		jQuery('#light-control').click(function(){
			jQuery(this).toggleClass('on');
			jQuery('body').toggleClass('dark');
		});
		
		jQuery('#zoom-control,#zoom-control-on').click(function(){
			jQuery('#zoom-control-on').toggle();
			jQuery('#footer').toggle();
			jQuery('#menu-topbar').toggle();
			
			jQuery('.bookflip').toggleClass('hidden');
			jQuery('#nofx').toggleClass('hidden');
		});
		
		/*jQuery('ul#menu-top-menu li').hover(function () {
			jQuery(this).children('ul').show();
		});*/
		
		/****Applies scrollbar***/
		jQuery('#mybook-single .entry-content').jScrollPane();
});
