jQuery(document).ready(function($) {
	function showlogomenu() {
		$(".getlogo").show("fast", function() {
			$("div.shade").fadeIn("fast");
		});
	}
	document.oncontextmenu = function(e) {
		console.log(e.target);
		if(e.target.className === "logo")
			return false;
		return true;
	};
	
	$("div.logo").mousedown(function(e){
		if( e.button === 2 ) {
			showlogomenu();
			return false;
		}
		
		$(this).mousemove(function(){
			$(this).unbind("mousemove").unbind("mouseup");
				showlogomenu();
				return false;
			}).mouseup( function() {
			window.location = "http://www.orangesoda.com";
		});
	});
	
	$(".shade").mousedown(function() {
		if ($(".getlogo").css("display")!="none"){
			$(".getlogo").hide("100", function() {
				$("div.shade").fadeOut("fast");
			});
		}
	});

});
