$(function(){	
	$('.top_nav a.our_services,#our_services_menu,#our_services_menu a').hover(
		function(){
			$('#our_services_menu').css('display','block');
		},
		function(){
			$('#our_services_menu').css('display','none');
		}
	);
	$('.menu a:first-child').addClass('now');
	$('.menu a').hover(
		function(){
			$('.menu a').removeClass('now');
			$(this).addClass('now');
			var index = $('.menu a').index($(this));
			$('#home_banner').css('background-image','url('+static+'/images/'+index+'_banner_home.jpg)');
		},
		function(){
			// var index = 0;
			// $('#home_banner').css('background-image','url('+static+'/images/'+index+'_banner_home.jpg)');
		}
	);
	
	$('#translate_form textarea').focus(function(){
		if( 'Copy/paste, or write text here.'==$(this).attr('value') )
		{
			$(this).val('');
		}
	});
	$('#translate_form textarea').blur(function(){
		if( $(this).attr('value')=='' )
		{
			$(this).val( 'Copy/paste, or write text here.');
		}
	});
	
	$('#translate_form_submit').click(function(){
		$('#translate_form').submit();
		return false;
	});
});