$(document).ready(function() {
	// top menu						   
	$('#selectcity').hover(function(){ $('#dropcity').fadeIn(500); });
	$('#dropcity').hover(function(){},function(){ $(this).fadeOut(250) });
	
	// new window links
	$('a.blank').attr('target','_blank');
	
	// email
	var jsemail = ('contact^^seolocal.ro').replace('^^','@');
	$('.jsemail').html('<a href="mailto:'+jsemail+'" rel="nofollow" title="Contact SEO Local">'+jsemail+'</a>');
	
	// butoane
	$('#btn_anlz').hover(function(){
		$(this).css('background-position','-130px');								  
	},function(){
		$(this).css('background-position','0px');
	});
	$('input.btn_cnslt').hover(function(){
		$(this).css('background-color','#e94593');								
	},function(){
		$(this).css('background-color','#35373a');	
	});
	
	$('#frm_analizeaza').submit(function(){
		if(!$('#keyword').val()) {
			$('#anlz_alert').text('Introdu cuvantul cheie care iti caracterizeaza afacerea.').show().fadeOut(5000);
			return(false);	 
		}
	})
});