$(document).ready(function(){
/*
	// Hide all Tab Contents
	$('div#mainbody div.paging .content').css('display','none');
	
	var selPage = $('div#mainbody div.paging #tabs li.selected a').attr('href');
	$('div#mainbody div.paging .content' + selPage).css('display','block');
	
	// Tab Selector (Content) {for active clicking}
	$('div#mainbody div.paging #tabs li a').click(function() {
		if ($(this).parent('li').hasClass('selected') === false) {
			// Reset all Tabs to unselected
			$('div#mainbody div.paging #tabs li').removeClass('selected');
			// Set new Selected tab
			$(this).parent('li').addClass('selected');
			// Hide All content
			$('div#mainbody div.paging div.content').stop(true,true).fadeOut(400);
			// Show specific Content
			var activePage = $(this).attr("href");
			$('div#mainbody div.paging div.content#' + activePage).delay(400).fadeIn(800);
		}
		//Update URL (tmp rewrite achor to prevent Page Jump)
		var activePage = $(this).attr("href");
		$('div#mainbody div.paging div.content' + activePage).attr('id', activePage.replace('#','') + '-tmp');
		location.hash = activePage;
		$('div#mainbody div.paging div.content' + activePage + '-tmp').attr('id', activePage.replace('#',''));
		// Prevent HTML Anchor jump
		return false;
	});
	*/
});
