// JavaScript Document
	
$(document).ready(function() 
{
	jQueryGlobalFunctions();
	jQueryLocalFunctions();
	return false;
});
function jQueryGlobalFunctions()
{
        // handle a hash on load
        var hash_id = document.location.toString().split('#')[1];

        // if there wasn't a hash in the url i think hash_id will be null
        // or false
        if (hash_id) {

                // call our custom function with hash_id as first parameter
                $('#'+hash_id+' img').show();

        }
		if($.browser.msie) {
		}else{
			$("div#navigation").css({ top:"-41px" });
		}
}
function jQueryLocalFunctions(){} // STUB DO NOT USE
