	$(document).ready(function() {
		$("#menu a").hover(function(ev) {
			var toFade = $(this).attr("rel");
			$("*").stop(false, true);
			$("#left-box .content:visible").fadeOut(100, function() {
				$("#left-box ." + toFade).fadeIn(100);
			});
			ev.stopPropagation();
		}, function(ev) {

		});
		
		$("#menu").mouseleave(function(event) {
			event.stopPropagation();
			$("#left-box .content:visible").fadeOut(100, function() {
				$("#left-box .content-default").fadeIn(100);
			});
			
		});
		
		$(".sing-up a").click(function(event) {
			event.stopPropagation();
			if ($("#sign-in-box").is(":visible")) {
				$("#sign-in-box").hide();
				$("body").unbind("click");
			}
			else {
				$("#sign-in-box").show();
				$('body').click(function() {
 					$("#sign-in-box").hide();
 				});
			}
		});
		
 		$('#sign-in-box').click(function(event){
     		event.stopPropagation();
 		});

	});
