/* $(document).ready(function() {
	
	if (highlight.length>=3) {
		$('p').each( function(e) {
			var haystack = $(this).text();
			find_key_word(haystack, highlight, 0);
		});
		
	}
	
	function find_key_word(haystack, needle, offset) {
		var needle_pos = haystack.indexOf(highlight);
		 if(document.selection) { 
			// Go the IE way 
		} else if(obj.selectionStart) { 
			// Go the Gecko way 
		} else { 
			// Fallback for any other browser 
		} 
	}
}); */
