$(function()
{
		$('.removehili').click(function(){
		    	$('body').removeHighlight();
		    	$('#found_cnt').html('');
		    	return false;
			});		
		
		
		$('#search_it_text_btn').click(function(){

				$('body').removeHighlight();
				var toFind = $('#search_it_text').attr('value').toUpperCase();

				if (toFind.length>1)
				{
    				$("*[@class*=dynacloud]").each(function() { $.highlight(this, toFind, 'p' ); });
				
					var found = $('body').find("span.highlight").size();
		    		$('#found_cnt').html(found+' Results found');
		    	}
		    	else
		    	{
		    		$('#found_cnt').html('Please enter at least 2 characters');
		    	}


		    	return false;
			});
		
		$('#search_it_text').focus();
		
		$('#search_it_text').keydown(function(e){
			if (e.which==13 ) //&& jQuery.browser.mozilla)
			{
				$('#search_it_text_btn').click();
			}
		});
});

