$( function(){
	
	$('#mainBar > ul > li').mouseover( function() {
		$('#mainBar > ul > li').css( 'background-image', 'none');
		$('#bottomBar > ul').hide();
		
		$(this).css( 'background-image', 'url(/media/menu_bg.png)');
		$( '#'+$(this).attr('id')+'_sub').show();
	});

	$( 'input, textarea' ).each( function() {
		if( $( this ).attr('rel') != '' )
		{
			$(this).focus( focusInput );
			$(this).blur( blurInput );
			$(this).trigger('blur');
		}
	});
	
	if( $( '#messagesContainer' ) )
	{
		$( '#messagesContainer' ).css('opacity','0.8');
		
		$('body').click( function() { $( '#messagesContainer' ).fadeOut("slow"); } );
		//setTimeout(function() {$( '#messagesContainer' ).fadeOut("slow")},2000);
	}
});

function focusInput( oEvent )
{
	if( $(oEvent.currentTarget).val() == $(oEvent.currentTarget).attr('rel') )
	{
		$(oEvent.currentTarget).val('');
	}
}

function blurInput( oEvent )
{
	if( $(oEvent.currentTarget).val() == '' )
	{
		$(oEvent.currentTarget).val($(oEvent.currentTarget).attr('rel'));
	}
}
