$(document).ready(function(){

	$('#simplemenu li li:last-child').addClass("lastchild");
	$('#utils li:last-child').addClass("lastchild");
	$('#locations li li:last-child').addClass("lastchild");
	$('#locations li li:first-child').addClass("firstchild");
	
	var flink = $('#locations li li:first-child a').attr('href');
	var firstparent = $('#locations li:first-child a')[1];
	var first = $('#locations li:first-child a')[0];
	$(firstparent).attr('href',flink);
	$(first).attr('href',flink);
	//alert($('#locations li:first-child a').length);
	if($('#submenu').length >0){
		$('#submenu li:first-child').addClass("firstchild");
		$('#submenu li:last-child').addClass("lastchild");
	}
	if($('#locations').length >0){
		
		$("#chooser").parent().hover(
			function(){
				$("#locations ul").slideDown('fast');
			},
			function() {
				$("#locations ul").slideUp('fast');
			}
		); 

	}
});
