/**************************************************
* Copyright@2009 Remiya Solutions                 *
**************************************************/
$.fn.codify = function(has_title){	
    var d = {
	    uni:{
		    out:"margin-bottom:10px;margin-top:10px;background:#DFDDD1;border:2px outset #7F7647;font-size:12px;font-family:\"Lucida Console\",\"Courier New\",Courier,monospace;",
			inner:"background:#F7FFEF;margin:5px;",
			title:"color:#F5F4EE;background:#7F7647;font-family:verdana;font-size:12px;"
		},
		blue:{
		    out:"margin-bottom:10px;margin-top:10px;background:#AFE3FF;border:2px outset #0089B9;font-size:12px;font-family:\"Lucida Console\",\"Courier New\",Courier,monospace;",
			inner:"background:#EFFBFF;margin:5px;",
			title:"color:white;background:#0089B9;font-family:verdana;font-size:12px;"
		},
		green:{
		    out:"margin-bottom:10px;margin-top:10px;background:#D5EF86;border:2px outset #8DB900;font-size:12px;font-family:\"Lucida Console\",\"Courier New\",Courier,monospace;",
			inner:"background:#FBFFEF;margin:5px;",
			title:"color:white;background:#8DB900;font-family:verdana;font-size:12px;"
		},
		red:{
		    out:"margin-bottom:10px;margin-top:10px;background:#FFD7CF;border:2px outset #B91E00;font-size:12px;font-family:\"Lucida Console\",\"Courier New\",Courier,monospace;",
			inner:"background:#FFF2EF;margin:5px;",
			title:"color:white;background:#B91E00;font-family:verdana;font-size:12px;"
		}
		
	}
	var style = $(this).attr("class");
    var lang = $(this).attr("title");
	if(lang=="")lang="Code";
    var txt = $(this).html();
	
	var out,inner,title;
	if(style=="blue"){out=d.blue.out;inner=d.blue.inner;title=d.blue.title;}
	else if(style=="green"){out=d.green.out;inner=d.green.inner;title=d.green.title;}
	else if(style=="red"){out=d.red.out;inner=d.red.inner;title=d.red.title;}
	else{out=d.uni.out;inner=d.uni.inner;title=d.uni.title;}
	
	var title = (undefined===has_title||has_title===true)?"<table width='100%' cellspacing='0' cellpadding='3' style='"+title+"'><tr><td><b>&nbsp;"+lang+"&nbsp;</b></td><td width='10'><a href='http://remiya.com' style='color:#F5F4EE;text-decoration:none;' onmouseover='this.style.color=\"orange\";' onmouseout='this.style.color=\"#F5F4EE\";' title='About'><b>?</b></a></td></tr></table>":"";
	if(undefined!==$(this).attr("nodeName")&&$(this).attr("nodeName").toLowerCase()=="pre"){
	    $("<div style='"+out+"'>"+title+"<div style='"+inner+"'><pre style='width:100%;padding:10px;padding-top:20px;padding-bottom:20px;margin:0px;overflow-x:auto; '>"+txt+"</pre></div>").replaceAll($(this));
	}else{
	    $("<div style='"+out+"'>"+title+"<div style='"+inner+"padding:20px;overflow-x:auto;'>"+txt+"</div>").replaceAll($(this));
	}
	return this;
};