$(document).ready(function(){
	$(".color_select").click(function () { 
		if ($(this).attr("color_set"))
		{
			$(".tvcolor").filter("." + $(this).attr("color_code")).css("background-color", "");
			$(this).attr("color_set", "");
		}
		else
		{
			$(".tvcolor").filter("." + $(this).attr("color_code")).css("background-color", $(this).attr("color_color"));
			$(this).attr("color_set", "1");
		}
    	});
});


