$(function(){	$(".rollover").hover(		function(){			if($(this).attr("src").indexOf("_ro") == -1) {				var newSrc = $(this).attr("src").replace(".gif","_ro.gif#hover");				$(this).attr("src",newSrc);			}		},		function(){			if($(this).attr("src").indexOf("_ro.gif#hover") != -1) {				var oldSrc = $(this).attr("src").replace("_ro.gif#hover",".gif");				$(this).attr("src",oldSrc);			}		}	);}); // create bookmark function CreateBookmarkLink() {    var title = "AmateurGalore.net - Daily Amateur Porn!";     var site_url = "http://www.amateurgalore.net";        isIE = navigator.userAgent.toUpperCase().indexOf('MSIE') >= 0;    isFF = navigator.userAgent.toUpperCase().indexOf('FIREFOX') >= 0;        if (isFF) {        window.sidebar.addPanel(title, site_url,"");    } else if (isIE) {        window.external.AddFavorite( site_url, title);     } else {        return true;    }}