//Gallery script

function showPic(whichpic)
{
	if(document.getElementById)
	{
	    var largepic = document.getElementById('placeholder');
		largepic.src = whichpic.href;
		largepic.alt = whichpic.title;
		document.getElementById('desc1').innerHTML= largepic.alt;
		
		return false;
	}
	else
	{
		return true;
	}
}

//scrap

function drop()
{
    window.location =  document.form1.dropper.value
    document.form1.dropper.selectedIndex = 0
}


function loc()
{
    document.DateSelect.action = document.DateSelect.linker.value;
    document.DateSelect.submit();
}

$(document).ready(function() {
    $("a[rel='globekey']").click(function() {
        pageTracker._link(this.href);
        if (this.target != "_blank") this.target = "_blank";
        return false;
    });

    var sfEls = document.getElementById("dropDownMenu");
    if (sfEls != null) {
        sfEls.onmouseover = function() {
            this.className = "msieFix";
        }
        sfEls.onmouseout = function() {
            this.className = this.className.replace(new RegExp("msieFix\\b"), "");
        }
    }
});