/**
 * @author rocky2000
 */

function updateSelection()
{
	$("#layout_selector > a").each(
		function( )
		{
			$( this ).find("img").removeClass("active");
			
		}
	);
	
	$(this).children("img").addClass("active");
	$("#layout_id_102").val($(this).children("img").attr("rel"));
	return false;
}

