var TB = {};

$extend( TB, {

	initButtons: function()
	{
		
		// Hide pop up
		
		$( 'popup-Locations' ).set( 'opacity', 0 );
		$( 'Locations-on' ).set( 'opacity', 0 );
	
		$( 'Locations' ).addEvents({
		
			'mouseenter': function() {
				$( 'popup-Locations' ).set( 'tween', { duration: 150 } );
				$( 'popup-Locations' ).tween( 'opacity', '1' );
				$( 'Locations-on' ).set( 'tween', { duration: 150 } );				
				$( 'Locations-on' ).tween( 'opacity', '1' );
			}
		
		});
		
		$( 'popup-Locations' ).addEvents({
		
			'mouseleave': function() {
				$( 'popup-Locations' ).fade( 'out' );
				$( 'Locations-on' ).fade( 'out' );
			}
					
		});	
	}
});

window.addEvent( 'domready', function() {

	// Init
	TB.initButtons();

});