$(document).ready(function(){

	// script homepage search
	hare.site.search.configure(".mainSearch");

	reset = 0;
		
	//center module tabs
	$('.internal-tabs').find('a').click(function(){
		tabId = $(this).attr('href');
		tabId = tabId.replace('#','');
		
		$('.internal-tabs').find('div').hide();
		$('.internal-tabs').find('#'+tabId).show();
		
		if (tabId == "tab-1")
			$(this).parents('ul').removeAttr('class');
		else if (tabId == "tab-2")
			$(this).parents('ul').removeAttr('class').addClass('middle');
		else if (tabId == "tab-3")
			$(this).parents('ul').removeAttr('class').addClass('right');
			
		return false;
	});
});
