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

$(document).ready(function() {
	$('div#headHitters').cycle({
		before: function(currSlideElement, nextSlideElement, options, forwardFlag) {
			$(nextSlideElement).find('img.hit').css('marginTop', Math.ceil(Math.random() * 50) + 10).css('marginLeft', Math.ceil(Math.random() * 200) + 10);
		}
	});
	$('table.trMarker tbody tr').mouseover(function(){
		$(this).addClass('trOn');
	}).mouseout(function(){
		$(this).removeClass('trOn');
	});
});