window.onload = function(){
//FadeEffect('show_message');
Shadowbox.init({
    //animate:         false,
	//fadeDuration:	0.1,
	//animSequence:     "sync",
	
    //displayNav:         false,
   // handleUnsupported:  "remove",
    //autoplayMovies:     false,
	handleOversize:     "resize",
	
	
        onOpen: function() {
                if((navigator.userAgent.match(/iPhone/i))||(navigator.userAgent.match(/iPad/i))) {
                        $("#sb-container").css("top", $(window).scrollTop());
                        $(window).bind('scroll', function() {
                                $("#sb-container").css("top", $(window).scrollTop());
                        });
                }
        },
        onClose: function() {
                if((navigator.userAgent.match(/iPhone/i))||(navigator.userAgent.match(/iPad/i))) {
                        $(window).unbind('scroll');
                }
        } 
	
	
});
//enableTooltips('wrapper');

};

