// fancy menu
if ( $( '#cleaningOffers' )[0] ) {
	(function( offersMenu ){
		function offersMenu( e ){
			$( '#menuOffers ul .active' ).removeClass( 'active' );
			$( '#cleaningOffers .target' ).removeClass( 'target' );

			$( this.parentNode ).addClass( 'active' );
			$( this.hash.replace( /anch-/,'' ) ).addClass( 'target' );

			this.hideFocus=1;
			//e.preventDefault();
		}

		$( '#menuOffers ul a' ).live( 'mouseover', offersMenu );

		if ( window.location.hash ) {
			$( 'a[href$=' + window.location.hash + ']' ).trigger( 'mouseover' );
		}
	})();
}
