jQuery.noConflict();

jQuery(function(){
    jQuery('#globalnavigation > li').hover(function() {
		jQuery(this).children('ul').stop();
        jQuery(this).children('ul').css({display:'block', height:'auto', opacity:'0.5'});
        jQuery(this).children('ul').animate({opacity:'1'},300);
        jQuery(this).children('ul').fadeIn('fast');
    },function() {
        jQuery(this).children('ul').fadeOut(1000);
    });		   
});

jQuery.event.add(window, "load", function(){
	jQuery("center > img").each(function(){
		var _width = jQuery(this).width();
		if(_width > 750){
			jQuery(this).css("width", "760px");
			jQuery(this).css("height", "auto");
		}
	});
});


