//jquery function for alternate table stripes and hover state.
/****
$(document).ready(function()
{
	$(".listing tr").mouseover(function(){$(this).addClass("over");}).mouseout(function(){$(this).removeClass("over");});
	$(".listing tr:even").addClass("alt");
});
*******/

//jquery function for alternate table stripes and hover state.

$(document).ready(function()
{
	$(".listing tr").mouseover(function(){$(this).addClass("over");}).mouseout(function(){$(this).removeClass("over");});
	$(".listing tr:even").addClass("alt");
	$("#result_list a").click(function(){//lide add this=for color and font changed when click-details
		$("#result_list a").css({color:"#FFFFFF","font-weight":"normal"});				
		$(this).css({color:"#c1b584","font-weight":"bold"});			   
									   });//end
});
