
///////////////////////////////////////////////////////////////////////////////////** MouseOver **//
	
	function test_byid1()
	{
		$("boxone").toggleClass("highlightboxone");
	}
	function test_byid2()
	{
		$("boxtwo").toggleClass("highlightboxtwo");
	}
	function test_byid3()
	{
		$("boxthree").toggleClass("highlightboxthree");
	}

	
///////////////////////////////////////////////////////////////////////////////////***MouseOut***//
	
	function test_byid1Out()
	{
		$("boxone").toggleClass("highlightboxoneOut");
	}
	
	function test_byid2Out()
	{
		$("boxtwo").toggleClass("highlightboxtwoOut");
	}
	function test_byid3Out()
	{
		$("boxthree").toggleClass("highlightboxthreeOut");
	}
	