$(document).ready(function(){
	 $('#fgColor').farbtastic(function(colorcode){changeFg(colorcode)});
	 $('#bgColor').farbtastic(function(colorcode){changeBg(colorcode)});
	 
	 $.farbtastic('#fgColor').setColor($('a').css('color'));
	 $.farbtastic('#bgColor').setColor($('body').css('background-color'));
	 
	 $('#colorPick').click(function(){
		$('#fgColor, #bgColor').toggle("fast");
		});
})

function changeFg(color){
	$('a, body, div#title_container').css({'color': color});
	
	$('div#menu').css({'border-right':'solid '+color+' 1px', 'border-top':'solid '+color+' 1px'});
	try{
		$('div.project').css({'border-bottom': '1px dotted'+color});
	}
	catch(e){
	}
	saveColors();
}

function changeBg(color){
	$('body').css({'background-color': color});
	saveColors();
}

function getColors(){
	fg = $('#fgColor').color;
	bg = $('#bgColor').color;
}

function saveColors(){
	
	$.post('system/saveColors.php', {acc:$.farbtastic('#fgColor').color, bg:$.farbtastic('#bgColor').color}, function(response){
		
	});
}

function apear_menu(no_menu)
{
	$('#sub'+no_menu).toggle("fast");
}
