$(document).ready(function(){  

	$('.choose_options').hide();
	$('.choose_options li:nth-child(even)').addClass('alt');

	$('#menu .sub li:nth-child(even)').addClass('alt');
	
	

	
	$('.drop').hover(function() {
	
		$(this).find('.sub').show();
		$(this).find('.droplink').addClass('active');
		
	}, function(){
		
			$(this).find('.sub').hide();
			$(this).find('.droplink').removeClass('active');
		});

	
	$('.choose_button').toggle(function() {
		$(this).parents('.chooser').css('background-position','bottom');
		$(this).parents('.chooser').find('.choose_options').slideDown('fast').show();
		$(this).addClass('down');
	}, function() {
		$(this).parents('.chooser').find('.choose_options').hide();
		$(this).parents('.chooser').css('background-position','top');
		$(this).removeClass('down');
	});
	/*
	$('.chooser').hover(function() {
		$(this).css('background-position','bottom');
		$(this).find('.choose_options').slideDown('fast').show();
	}, function() {
		$(this).find('.choose_options').hide();
		$(this).css('background-position','top');
	});
	*/
});




