﻿var script = "<script type='text/javascript' src='/js/jquery.flash.js'></script>" +
"<script type='text/javascript' src='/js/jquery.pager.js'></script>" +
"<script type='text/javascript' src='/js/jquery.min.js'></script>";       //"<script language='javascript' src='/js/jquery-1.2.6.min.js'></script>"

document.write(script);

// Implement trim in JavaScript
String.prototype.trim = function() {
    return this.replace(/^\s+|\s+$/g, "");
}
String.prototype.ltrim = function() {
    return this.replace(/^\s+/, "");
}
String.prototype.rtrim = function() {
    return this.replace(/\s+$/, "");
}

