$(document).ready(function() {

	$('.menuitem').hover(function() {
		$(this).children('.toggler').css('background-color','#efefef');
		$(this).children('.submenu').fadeIn('fast');
	}, function() {
		$(this).children('.toggler').css('background-color','#fff');
		$(this).children('.submenu').css('display','none');
	});
	
	$('#preloader img').load(function() {
	$('#preloader').animate({opacity: 0},1000,
		function()
			{
			$('#frame .animated-load').css('background','none');
			$('#frame img').fadeIn('slow');
			});
	});

});

$(window).load(function () {
	$('#frame .animated-load').fadeOut(200);
	$('#frame img').fadeIn(1300);
});