jQuery.noConflict()(function(){
	jQuery(document).ready(function() {
		jQuery('#header .menu li > ul').each(function() {
			thisHeight = jQuery(this).height();
			jQuery(this).addClass('flyup');
			jQuery(this).css('top', -thisHeight-30);	
		});	
	});
});
