$(document).ready(function() {
	$("tr").mouseover( function() {
		$(this).addClass("over");
	}).mouseout( function() {
		$(this).removeClass("over");
	});
	
	$("tr:even").addClass("table-alt");
	
	
	$('#the-salon a').click(function() {
		$('#nav ul li ul').hide('fast');
		$('#the-salon ul').slideToggle('slow');
	});
	
	$('#the-spa a').click(function() {
		$('#nav ul li ul').hide('fast');
		$('#the-spa ul').slideToggle('slow');
	});
	
	$('#events-and-press a').click(function() {
		$('#nav ul li ul').hide('fast');
		$('#events-and-press ul').slideToggle('slow');
	});
	
	$('#shop-j-bentley a').click(function() {
		$('#nav ul li ul').hide('fast');
		$('#shop-j-bentley ul').slideToggle('slow');
	});
	
	$('#exclusively-j-bentley a').click(function() {
		$('#nav ul li ul').hide('fast');
		$('#exclusively-j-bentley ul').slideToggle('slow');
	});
	
});