// AUTOLOAD CODE BLOCK (MAY BE CHANGED OR REMOVED)
//jQuery(function($) {
//	$("img.reflect").reflect({/* Put custom options here */});
//});
$(document).ready(function() {  
$('a.external').click(function(){this.target = "_blank";});
// Menu H
if ($.browser.msie) return;
        $('#menu_h_783 li')
            .removeClass('highlight')
            .find('a')
            .append('<span class="hover" />').each(function () {
                    var $span = $('> span.hover', this).css('opacity', 0);
                    $(this).hover(function () {
                        // on hover
                        $span.stop().fadeTo(500, 1);
                    }, function () {
                        // off hover
                        $span.stop().fadeTo(500, 0);
                    });
                }); 
// End Menu H

});   
