$(document).ready(
	function(){
		$('.bunnercont').innerfade({
			animationtype: 'slide',
			speed: 1000,
			timeout: 8000,
			type: 'sequence',
			containerheight: '140px'
		});
		$('.txtfe').innerfade({
			animationtype: 'slide',
			speed: 2000,
			timeout: 5000,
			type: 'sequence',
			containerheight: 'auto'
		});
		$('.rettopbt a').click(function(){
			$('#allBox').ScrollTo(1000, 'easeout');
			return false;
		});	
		$('.demoboxlink a').click(function(){
			$('#democarBox').ScrollTo(1000, 'easeout');
			return false;
		});	
		$('.boothlink a').click(function(){
			$('#boothBox').ScrollTo(1000, 'easeout');
			return false;
		});	

		$("#mainmenuBox li").hover(
		function(){
			$(this).find('dl:first').css({visibility: "visible",display: "none"}).show(300);
		},
		function(){
			$(this).find('dl:first').css({visibility: "hidden"});
		});

		$("#democarBox li").hover(
		function(){
			$(this).find('dl:first').css({visibility: "visible",display: "none"}).show(700);
		},
		function(){
			$(this).find('dl:first').css({visibility: "hidden"});
		});
		
		$("#boothBox li").hover(
		function(){
			$(this).find('dl:first').css({visibility: "visible",display: "none"}).show(700);
		},
		function(){
			$(this).find('dl:first').css({visibility: "hidden"});
		});



});


