$(function(){
	// dropmenu
	var dropMenuHideTimeout;
	var currentMenuItem;
	var hoveredMenuId;
	
	$(".dropMenu").hide();
	$(".dropMenuContainer").hover(function(){
		clearTimeout(dropMenuHideTimeout);
		if (hoveredMenuId && $(this).attr("id") == hoveredMenuId) {
			$(this).children(".dropMenu").show();
			return;
		}
		else if (hoveredMenuId && $(this).attr("id") != hoveredMenuId) {
			$('#'+hoveredMenuId).children(".dropMenu").slideUp(150);
		}
		$(this).children(".dropMenu").slideDown(350, function(){$(".dropMenu").not($(this)).hide();});
		
	}, function(){
		currentMenuItem = $(this);
		hoveredMenuId = currentMenuItem.attr("id");
		dropMenuHideTimeout = setTimeout(function(){currentMenuItem.children(".dropMenu").slideUp(150)}, 500);
	});	

	$('input:radio').bind( 'change', function() { 
		$('.attention .icon').fadeOut().fadeIn();

	} );

} );
