$(document).ready(function(){
	
	$(".lightbox").lightbox();
	
	$('#slogan').cycle({
		fx:    		'fade',
		speed:  	4000,
		timeout: 	2500
	});
	
	$('#cycle_pics').cycle({
		fx:    		'fade',
		speed:  	4000,
		timeout: 	2500
	});
		
	//alt-BKG
	$('.ajsc_ver .items_content').hover(
		function () {
			$this_trBg = $(this).css('background-color');
			$(this).css("background-color", "#f7f7f7");
		}, 
		function () {
			$(this).css("background-color", $this_trBg);
		}
	);
	
	$('.newsentry_preview4').hover(
		function () {
			$this_trBg = $(this).css('background-color');
			$(this).css("background-color", "#f7f7f7");
		}, 
		function () {
			$(this).css("background-color", $this_trBg);
		}
	);
	
	$('.newsentry_preview5').hover(
		function () {
			$this_trBg = $(this).css('background-color');
			$(this).css("background-color", "#f7f7f7");
		}, 
		function () {
			$(this).css("background-color", $this_trBg);
		}
	);
	
	$('.downloadentry').hover(
		function () {
			$this_trBg = $(this).css('background-color');
			$(this).css("background-color", "#f7f7f7");
		}, 
		function () {
			$(this).css("background-color", $this_trBg);
		}
	);
	
	$('.produkt').hover(
		function () {
			$this_trBg = $(this).css('background-color');
			$(this).css("background-color", "#f7f7f7");
		}, 
		function () {
			$(this).css("background-color", $this_trBg);
		}
	);
			
});
