$(function() {
if ((navigator.userAgent.indexOf('MSIE') >= 0)
&& (navigator.userAgent.indexOf('Opera') < 0)) {
//ie
jQuery("head").append("<link>");
a = jQuery("head").children(":last");
a.attr({
rel : "stylesheet",
type : "text/css",
href : "css/positionTreeForIE.css"
});
} else {
$("<link>").attr({
rel : "stylesheet",
type : "text/css",
href : "css/positionTreeForFF.css"
}).appendTo("head");
}
});