// saves colors for panel bg colouring in adimn homepage etc
function save_colour(colour, id, i) {
		var data = {
			id: id,
			colour: (colour != '#' ? colour : '')
		};

		$.post('/assets/content_box/ajax_save_bg_color',data, function(e){
		//show message
		$('#colorsdiv_'+id+'_msg').html(e).show(200);

		if( e.search('Saved') != -1 ) {

				// turn all borders off
				$('#colorsdiv_'+id+'> a > div').each(function(){
					$(this).css('border', '2px solid #000000');
				});

				// put border on color
				$('#cb_'+id+'_'+i).css('border', '2px solid #ff0000');
		}
	});
}


