/**
  *	Samjay Productions
  */
  var $global_offset = -60;

 // When the document loads do everything inside here ...
 // To create a smoooth menu
  jQuery(document).ready(function(){
	
	jQuery("#menu").localScroll(
		{
			duration: 800,
			offset: $global_offset
			//,easing: 'easeInOutElastic'
		}
	);
	
	jQuery("a.tab").click(function () {	
		// switch all tabs off
		jQuery(".active").removeClass("active");		
		// switch this tab on
		jQuery(this).addClass("active");
	});
	
	// inner menu voor lineup ook zo make zekers
	jQuery("#info .djlink").click(function () 
	{
		jQuery(".active").removeClass("active");
		jQuery("#menutab_lineup").addClass("active");
		var content_show = jQuery(this).attr("title");
		jQuery.scrollTo(jQuery("#lineup"),800, 
			{
				offset: $global_offset,
				onAfter:function(){
					// switch all tabs off
					jQuery("#lineup .activedj").removeClass("activedj");		
					// switch this tab on
					jQuery("#lineup #inner_"+content_show).addClass("activedj");		
					// slide all content up
					jQuery("#innerwrap .djcontent").slideUp();		
					// slide this content up
					jQuery("#"+content_show).slideDown();
				}
				//,easing: 'elasout'
			}
		);
		return false;
	});
	
	// inner menu voor lineup ook zo make zekers
	jQuery("#lineup .innertab").click(function () {
		// switch all tabs off
		jQuery("#lineup .activedj").removeClass("activedj");		
		// switch this tab on
		jQuery(this).addClass("activedj");		
		// slide all content up
		jQuery("#innerwrap .djcontent").slideUp();		
		// slide this content up
		var content_show = jQuery(this).attr("title");
		jQuery("#"+content_show).slideDown();
		return false;
	});
  });

