$(document).ready(function(){		
	
	
	if($('.news-gallery').length){
		$('.news-gallery').cycle({ 
		    fx: 'fade',
		    speed:    500, 
    		timeout:  6000  
		});
	}
	
	/*
	$('.sectionMenu a').live('click',function(){			
		$('.sectionMenu a').removeClass('act');
		$(this).addClass('act');
		var contentcontainer = $('.contentwrap-default');
		var section = $(this).attr('rel');
		
		contentcontainer.append('<div class="overlay">&nbsp;</div>');							
		contentcontainer.animate({opacity: 0.2},100);		
		var data = 'eID=optares_page&action=changeSection&section=' + section;			  		
	  $.ajax({
			url: "index.php",			
			type: "GET",
			data: data,
			success: function(resp) {											
				
				contentcontainer.html(resp);									
				
				// HEADER BGCOLOR AUSTAUSCHEN
				
				// FOOTER BGCOLOR AUSTAUSCHEN
				
				// HINTEGRUND BILD AUSTAUSCHEN
				
				// RANDLOGO AUSTAUSCHEN
				
				// LOGO AUSTAUSCHEN
				
				// REITER AKTIVIEREN
				
				
				
				
				if($('.overlay').length){					
					contentcontainer.animate({opacity: 1.0},100);
					$('.overlay').remove();
				}	
													
			}
		});	
	
		
		return false;
			
	});		
	*/
	
});

