$(function() {
$('#globalNav_wrapper')
 .css({
	'width': '70px',
	'z-index': '-9999'
 })
 .live('mouseenter', function() {
	// console.log('enter');
	$('#globalNav_wrapper').css({
		'width': '220px',
		'z-index': '9999'
	});
 })
 .live('mouseleave', function() {
	// console.log('leave');
 	$('#globalNav_wrapper').css({
		'width': '70px',
		'z-index': '-9999'
	});
 });

});