$(function() {
	$('#aboutLink, #dropMenu1').bind({
		mouseenter: function() {
			$('#dropMenu1').show();
			$('#aboutLink').css('backgroundColor','#ffffff');
		}, mouseleave: function() {
			$('#dropMenu1').hide();
			$('#aboutLink').css('backgroundColor','transparent');
		}
	});
	$('#communityLink, #dropMenu2').bind({
		mouseenter: function() {
			$('#dropMenu2').show();
			$('#communityLink').css('backgroundColor','#ffffff');
		}, mouseleave: function() {
			$('#dropMenu2').hide();
			$('#communityLink').css('backgroundColor','transparent');
		}
	});	
	$('#purchaseLink, #dropMenu3').bind({
		mouseenter: function() {
			$('#dropMenu3').show();
			$('#purchaseLink').css('backgroundColor','#ffffff');
		}, mouseleave: function() {
			$('#dropMenu3').hide();
			$('#purchaseLink').css('backgroundColor','transparent');
		}
	});	
});
