$(document).ready(function () {	
	// Fix PNG for IE6 and below
	if ((/MSIE (5\.5|6\.)/).test(navigator.userAgent)) { 
			supersleight.init();
	}
});

 function encodeHtml(text) {
    var div = document.createElement('div');
    var text = document.createTextNode(text);
    div.appendChild(text);
    return div.innerHTML;
}