	$("div.search_row").bind("mouseenter",function(){
		$(this).find(".search_options").children().css("display", "block");
		$(this).find(".search_options").fadeIn("fast");
	})
	
	$("div.search_row").bind("mouseleave",function(){
		$(this).find(".search_options").fadeOut("fast");
		$(this).find(".search_options").children().css("display", "none");
	})


	$("div.row0").bind("mouseenter",function(){
		$(this).css("background", "url(http://static.gettimeline.net/search_row0_bg_selected.png)");
		$(this).animate({
			opacity: 0.75
		}, 40);
		
		$(this).animate({
			opacity: 1
		}, 40);
		
	})
	$("div.row0").bind("mouseleave",function(){
		$(this).css("background", "url(http://static.gettimeline.net/search_row0_bg.gif)")
	})
	
	$("div.row1").bind("mouseenter",function(){
		$(this).css("background", "url(http://static.gettimeline.net/search_row1_bg_selected.png)");
		$(this).animate({
			opacity: 0.75
		}, 40);
		
		$(this).animate({
			opacity: 1
		}, 40);
		
	})
	$("div.row1").bind("mouseleave",function(){
		$(this).css("background", "url(http://static.gettimeline.net/search_row1_bg.gif)")
	})