$(document).ready(function() {
	$("#navigation div").hover(
	  function () {
		$(this).addClass("nav-hover");
		$(this).children("div").slideDown(300);
	  },
	  function () {
		$(this).removeClass("nav-hover");
		$(this).children("div").slideUp(300);
	  }	
	);
	
	$("#login").dialog({
		bgiframe: true,
		height: 225,
		resizable: false,
		draggable: false,
		modal: true,
		buttons: {
			'Login': function() {
				$(this).dialog('close');
				document.forms[0].submit();
			},
			'Cancel': function() {
				$(this).dialog('close');
				location.replace('../');
			}
		}
	});
}); 
setTimeout(function(){ $('#success').fadeOut('slow'); }, 3000);
