
$(document).ready(function() {	
	//alert("Yep, i'm here.");
	$('#selectTrigger').click(function(event) {
		event.preventDefault();
		$('#options').slideToggle(200);
	});
	$('a','#options').click(function(event) { 
		//event.preventDefault();
		$('#options').fadeOut(100); 
	});
	$('#content').click(function() {
		$('#options').fadeOut(100); 
	});
	
	$('.thumbsArrow').click(function(event) { event.preventDefault(); });
	$('.thumbsArrow').mousedown(function() {  $(this).css('top','2px'); });
	$('.thumbsArrow').mouseup(function() {  $(this).css('top','1px'); });
	$('.thumbsArrow').mouseleave(function() {  $(this).css('top','1px'); });
	
});

