 //image rollovers
 
 $(document).ready(function(){
 	$(".menu img").hover(
	 function()
	 {
	  this.src = this.src.replace(".jpg","_rl.jpg");
	 },
	 function()
	 {
	  this.src = this.src.replace("_rl.jpg",".jpg");
	 }
	);
 });
 
 function CreateBookmarkLink() {

 	title = "RelaxTips.net"; 
 	url = "http://www.relaxtips.net";

	if (window.sidebar) { // Mozilla Firefox Bookmark
		window.sidebar.addPanel(title, url,"");
	} else if( window.external ) { // IE Favorite
		window.external.AddFavorite( url, title); }
	else if(window.opera && window.print) { // Opera Hotlist
		alert("Sorry, adding to favorites is only supported in Internet Explorer and Mozilla Firefox."); 
	}
 }

 
 
 

