$j(function(){
	$j("a.dropLink").click(function(){
		$j(this).parents("ul.seoCity").find("ul.seoCategoryLocation").slideToggle("normal");
		return false;
	});

	//Hide the first three hotels
	$j("div.hotelListing div.hidden").each(function(i,e){
		$j(this).hide();
	});

	$j("#viewAllHotels")
	.click(function(){
		$j("div.hotelListing div.hidden").each(function(i,e){
			$j(this).slideToggle("normal");
		});
		return false;
	})
	.toggle(
		function(){
			$j(this).addClass("collapse");
			$j(this).html("<a title=\"Click here to collapse hotel list\">Click here to collapse hotel list</a>");
		},function(){
			$j(this).removeClass("collapse");
			$j(this).html("<a title=\"Click here to expand the list\">View all recommended Hotels</a>");
		}
	);
});
