function addEventMenu() {
/*    $('m_billing').style.cursor = 'pointer';*/
    $('m_telip').style.cursor = 'pointer';
    $('m_cards').style.cursor = 'pointer';
    $('m_callshop').style.cursor = 'pointer';
    $('m_wholesale').style.cursor = 'pointer';
    $('m_subscriber').style.cursor = 'pointer';

/*    Event.observe($('m_billing'), 'click', function() {
	new Effect.ScrollTo('billing', { duration:'2.0', offset:-50 })
    });*/
    Event.observe($('m_telip'), 'click', function() {
	new Effect.ScrollTo('telip', { duration:'2.0', offset:-50 })
    });
    Event.observe($('m_cards'), 'click', function() {
	new Effect.ScrollTo('cards', { duration:'2.0', offset:-50 })
    });
    Event.observe($('m_callshop'), 'click', function() {
	new Effect.ScrollTo('callshops', { duration:'2.0', offset:-50 })
    });
    Event.observe($('m_wholesale'), 'click', function() {
	new Effect.ScrollTo('wholesale', { duration:'2.0', offset:-50 })
    });
    Event.observe($('m_subscriber'), 'click', function() {
	new Effect.ScrollTo('subscriber', { duration:'2.0', offset:-50 })
    });


}

    Event.observe(window, 'load', addEventMenu);
