$(document).ready(function(){
	$("#wrap #content .navi li").click(function(){document.location=$(this).find("a").attr("href");})
	$("#wrap #content .navi li").not("#current")
	.hover(function(){
		$(this).css("text-decoration","underline");
	},function(){
		$(this).css("text-decoration","none");
	})
	
	$(".fav").click(function(){
		title = "Sandown Dental Care";
		url = location.href;
		if($.browser.safari){
			alert("Please press apple-D to bookmark this page.");
		};
		if (window.sidebar) { // Moz
			window.sidebar.addPanel(title, url,"");
		}else if(window.external ){ // IE
			window.external.AddFavorite( url, title);
		}else if(window.opera && window.print) { // Opera
			return true;
		}
		return false;
	})
	
	$(".print").click(function(){
		window.print();
		return false;
	})
	
	
})
