var stopper = 0;

$(document).ready(function(){
	//ProduktMenue 5te Ebene
	if(hideProducts) {
		$('.hideUL').hide();
	} else {
		setTimeout("slideUP()",800);
	}
	$('#productselector').effect('highlight',{ color: '#fecc00' }, 1000);

	$('#productselector').click(function (){
		$('.hideUL').slideDown("fast");
		setTimeout("slideUP()",8000);
		return false;
	});

	//HoverEffekt in Tabellenzeile
	$("tr").hover(
		function () {
			$(this).addClass('hover');
		}, 
		function () {
			$(this).removeClass('hover');
		}
	);
	$('#productList').hover(function(){stopper=1;},function(){stopper=0;setTimeout("slideUP()",800);});
	$('#productList').css({ paddingBottom: '100px'});
});

function slideUP() {
	if(!stopper) {
		$('.hideUL').slideUp("fast");
	}
}

function slideDOWN() {
	$('.hideUL').slideDown("fast");
}
