
$(document).ready(function(){

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

$("p#bookmark a").click(function(){
var bookmark_url="http://theorniphile.info/labagh_woods/index.html";
var text_description="Birding LaBagh Woods Forest Preserve";
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) key and the \"D\" key on your keyboard to bookmark this site. For Mac users, press the Command (Apple) key and the \"D\" key on your keyboard.");
return false;
}
});


$(".photo_container img").mousemove(function(e){
$("span#blurb").css({"display":"block", "position":"relative", "top":"-425px", "left":"250px", "margin":"0px"});

});

$(".photo_container img").mouseout(function(){
$("span#blurb").css("display", "none");
});


$(".photo_container img").bind("contextmenu", function(e){
return false;
});

$(".photo_container img").mousedown(function(e){
return false;
});

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

});




