
$(document).ready(function(){

var n = new Date();
var y = n.getFullYear();
$("#year").html(y);

$("p#bookmark").html("<a href='javascript:void'>Bookmark this page<img src='plus.gif' alt='plus'></a>");

$("a#bookmark1").click(function(){
var bookmark_url="http://theorniphile.info/add_favorites_guide/index.html";
var text_description="How to Create a Bookmark Link For Your Web site";
window.external.AddFavorite(bookmark_url,text_description);
});

$("a#bookmark2, p#bookmark a").click(function(){
var bookmark_url="http://theorniphile.info/add_favorites_guide/index.html";
var text_description="How to Create a Bookmark Link For Your Web site";
if (navigator.appName=="Microsoft Internet Explorer" && parseInt(navigator.appVersion) >= 4 && navigator.platform.indexOf("Win") > -1 && navigator.appVersion.indexOf("SlimBrowser") < 0)
{
window.external.AddFavorite(bookmark_url,text_description);
}

else
{
alert("For PC users, press the Control (Ctrl) and \"D\" keys on your keyboard to bookmark this site. For Mac users, press the Command (Apple) and \"D\" keys on your keyboard.");
return false;
}


});

$("div.about_me").css("borderRadius", "3px");

});


