$(document).ready(function() {
	$("#header > ul > li").hover(function() { $(this).children("ul").stop(true,true).fadeIn("fast"); },function() { $(this).children("ul").stop(true,true).fadeOut("fast"); });
	$(".fade, a img").hover(function() { $(this).stop(true,true).fadeTo("fast",0.5); },function() { $(this).stop(true,true).fadeTo("fast",1); });
	$(".targetFadeTo50").hover(function() { $(this).find(".target").stop(true,true).fadeTo("fast",0.5); },function() { $(this).find(".target").stop(true,true).fadeTo("fast",0); });
	$("#search").click(function() { $(this).val(""); });
	$("table tr:odd").addClass("row_odd");
});
