// JavaScript Document

$(function(){
	// this initialises the demo scollpanes on the page.
	$('#text').jScrollPane({showArrows:true, scrollbarWidth:10, scrollbarMargin:5});
});

var GB_ANIMATION = true;

$(document).ready(function(){
        $("a.greybox").click(function(){
          var t = this.title || $(this).text() || this.href;
          GB_show(t,this.href,550,650);
          return false;
        });
		
		$('#one').jqGalScroll();
		
		$("a.tab").hover(function () {
			// switch all tabs off
			$(".active").removeClass("active");
			// switch this tab on
			$(this).addClass("active");
			// slide all content up
			$(".tab_content").slideUp();
			// slide this content up
			var content_show = $(this).attr("name");
			$("#"+content_show).slideDown();
		  
		});
});
