

$(document).ready(function()
{	

	$('#main-menu li').hover(
		function()
		{
			var subsize = { };
			var $submenu = $(this).addClass('hover').find('>.submenu').show();
			if($.browser.msie)
				$submenu
					.append("<iframe class='kfb-iframe'></iframe>")
						.find('.kfb-iframe').each(function(){
							var ul = $(this).prev();
							subsize = { x: ul[0].offsetWidth, y: ul[0].offsetHeight };
							$(this).css({ width: subsize.x, height: subsize.y });
						})
						.end()
					.find('>ul>li').width(subsize.x);	
		},
		function()
		{
			$(this).removeClass('hover').find('>.submenu').hide().find('.kfb-iframe').remove();
		}
	);
	
	$('#lang-menu').hover(function(){ $(this).addClass('hover'); }, function(){ $(this).removeClass('hover'); } );

	$('.top_p').cycle({
		fx: 'fade',
		pause: 1,
		speed: 1000,
		timeout: 4000
		}
	);
	$('#motive').cycle({
		fx: 'fade',
		pause: 1,
		speed: 1000,
		timeout: 4000
		}
	);

});

