function changeTabClass(tabId,controller)
{$('#newsTab').attr('class','');
$('#accomodationTab').attr('class','');
$('#gastronomyTab').attr('class','');
$('#eventsTab').attr('class','');
$('#companyTab').attr('class','');
$('#tab2').attr('class','');
$('#tab3').attr('class','');
$('#tab4').attr('class','');
//$('#'+tabId).attr('class','selected');
if(tabId=='newsTab')
{
	$('#buttons').attr('style','width:0px; height:0px;');
	$('#buttons').attr('href','');
}
else{
	$('#buttons').attr('style','width:284px; height:100px; float:left; clear:both; background: url(/public/images/default/add_'+controller+'.png) no-repeat scroll center center transparent;');
	$('#buttons').attr('href',"javascript:getUrl('/pl/def/"+controller+"/add')");
}
}
$(document).ready(function() {
	$('#tab2').click(function(){
		$('.switch').css("background-position", "left center");
	});
	$('#tab3').click(function(){
		$('.switch').css("background-position", "left bottom");
	});
	$('#newsTab').click(function(){
		$('.switch').css("background-position", "left top");
	});
	

	

	
	
	
	$('.subSlide').hide();
	$('.subOpen').show();
	
	$('.expand').click(function(){
		$(this).next('.subSlide').slideToggle();
		
	});
	
	
});
