function MM_openBrWindow(theURL,winName,features) { //v2.0
	if (window.focus) {
		w = window.open(theURL,winName,features).focus();
	} else {
		w = window.open(theURL,winName,features);
	}
	return w;
}
function popup(url) {
  MM_openBrWindow(url,'popup','scrollbars=yes,resizable=yes,width=550,height=550');
}
function popupSized(url,w,h) {
	MM_openBrWindow(url,'popup','scrollbars=yes,resizable=yes,width='+w+',height='+h);
}

$(document).ready(function(){
	$('table.trMarker tbody tr').bind('mouseover',function(){
		$(this).addClass('trOn');
	});
	$('table.trMarker tbody tr').bind('mouseout',function(){
		$(this).removeClass('trOn');
	});
	$('#categorySlideShow').cycle('fade');
});