$(document).ready(function() {
	// setting the tabs in the sidebar hide and show, setting the current tab
	$('div.tabbed > div').hide();
	$('div.t1').show();
	$('div.tabbed ul.tabs li.t1 a').addClass('tab-current');

	// SIDEBAR TABS
	$('div.tabbed ul li a').click(function(){
		var thisClass = this.className.slice(0,2);
		$('div.tabbed > div').hide();
		$('div.' + thisClass).show();
		$('div.tabbed ul.tabs li a').removeClass('tab-current');
		$(this).addClass('tab-current');
	});


	// setting the tabs in the sidebar hide and show, setting the current tab
	$('div.tabbed1 > div').hide();
	$('div.t11').show();
	$('div.tabbed1 ul.tabs1 li.t11 a').addClass('tab-current');

	// SIDEBAR TABS
	$('div.tabbed1 ul li a').click(function(){	
		var thisClass = this.className.slice(0,3);
		$('div.tabbed1 > div').hide();
		$('div.' + thisClass).show();
		$('div.tabbed1 ul.tabs1 li a').removeClass('tab-current');
		$(this).addClass('tab-current');
	});


	$("#slider").easySlider({
		speed: 200,
		auto: true,
		pause: 15000,
		continuous: true,
		numeric: true
	});

	$("#galler_slider").easySlider({
		auto: false,
		continuous: true,
		controlsShow : true,
		nextText: '',
		prevText : ''		
	});
});
