jQuery( function() {
	jQuery( 'ul#nav' ).children( 'li' ).hover( function() {
		jQuery( 'ul#nav li.on' ).addClass( 'off' );
		jQuery( this ).addClass( 'over' );
	},
	function() {
		jQuery( 'ul#nav li.on' ).removeClass( 'off' );
		jQuery( this ).removeClass( 'over' );
	} );
	
	//Applying special style
	jQuery( 'ul#nav' ).children( 'li:last' ).children( 'a:last' ).css( 'background-image', 'none' );
} );
