 $(document).ready(function() {
  
	 function checkobject(obj) {
		 if (document.getElementById(obj)) { return true; } else { return false; }
	 }
	 
//meunu drugiego rzedu	 
   $("#menu-main>div>ul>li").hover(
		   function(){
			   $(this).children("ul").show();
		   },
		   function(){
			   $(this).children("ul").hide();
		   }		   
   );
if(checkobject("tabContainer")){
	//tabswitch
	   $('.SlideTab').tabSwitch('create',{width: 539, height: 200});
	   $('.SlideTab').tabSwitch('startAuto',{speed: 300, interval: 10000});
		$('.tabSelect').click(function(e){
			$('.SlideTab').tabSwitch('moveTo',{index: parseInt($(this).attr("rel"))});
			e.preventDefault();
		});
		$('.Nav').click(function(e){
			$('.SlideTab').tabSwitch('moveStep',{step: parseInt($(this).attr("rel"))});
			e.preventDefault();
		});
		
		
			
			
			$('#tabAutoPlay').toggle(function(){
				$('#tabAutoPlay').text('play');
				$('.SlideTab').tabSwitch('toggleAuto');
			},function(){
				$('#tabAutoPlay').text('stop');
				$('.SlideTab').tabSwitch('toggleAuto');
			});
		
}			
	 
 });

