jQuery(function(){
	jQuery('textarea.newpaste')
		.change(function(){
			var sel = '';
			if(this.value.match(/<\?php/i)){
				sel=1;
			}else if(this.value.match(/\<html\>|\<input |\<ul |\<ul>/im)){
				sel=3;
			}else if(this.value.match(/<script /i)){
				sel=3;
			} else if(this.value.match('(margin|padding|border)-(top|right|bottom|left)')){
				sel=4;
			}else if(this.value.match(/select |(insert into)|(create table)|(alter table)/i)){
				sel=5;
			}else if(this.value.match(/update |where /gim)){
				sel=5;
			}else if(this.value.match(/jquery|\$\(/i)){
				sel=8;
			}
			else{ return false; }
			jQuery('#high')[0].selectedIndex=sel;
			
		});
});
