// ==UserScript==
// @name           reddit arduino controller
// @namespace      http://userscripts.org/users/schrockwell
// @include        http://*reddit.com/*
// @require		   http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js
// ==/UserScript==


// Event handler when a user votes anything
voted = function(event) {
	var target = $(event.target);
	
	if (target.hasClass("up")) {
		$.get("http://localhost:31337/?+FFFFFr"); // upvote		
	} else if (target.hasClass("down")) {
		$.get("http://localhost:31337/?+FFFFFg"); // downvote		
	}
};

// Attach the event handler to all arrows
$(".arrow").bind("mousedown", voted);

// Check for mail and light/dim
if ($(".nohavemail").length == 0) {
	$.get("http://localhost:31337/?+y"); // orangered
} else {
	$.get("http://localhost:31337/?-y"); // no orangered
}
