$(document).ready(function(){
	
	// setTimeout('window.scroll(0,0)',500);
	fix_css();
	
});

function fix_css(){
	// add firstChild class to all li:first-child elements
	jQuery("ul li:first-child").addClass("firstChild");
	// add even/odd row classes
	jQuery("tr:even").addClass("evenRow");
	jQuery("tr:odd").addClass("oddRow");
	// add class to various input types
	jQuery(":radio").addClass("inputRadio");
	jQuery(":checkbox").addClass("inputCheckbox");
	jQuery(":button").addClass("inputButton");
	jQuery(":submit").addClass("inputSubmit");
	jQuery(":text").addClass("inputText");
	jQuery(":password").addClass("inputPassword");
	jQuery(":image").addClass("inputImage");
}
