// affects the display of pages - where CSS is not enough
$(document).ready(function() {
if ($.browser.msie) { // for IE6 as CSS attr selector are not supported
$('input[@type$="checkbox"]').each(function() {
$(this).addClass('checkbox');
});
$('input[@type$="radio"]').each(function() {
$(this).addClass('radio');
});
}
});// affects the display of pages - where CSS is not enough
$(document).ready(function() {
s = new String(window.location.href);
var sArr = s.split('http://www.greenwindow.fi');
$('ul li a[href="' +sArr[1] +'"]').parents('li').addClass('active');
});

