$(document).ready(function(){
	
	//$('a[rel^=fancybox]').fancybox({width:800,height:500});
	//$('#colorWheel').farbtastic(changeMainColor)
	
})
var grabColorWheel = function(){
	var position = $(".colorWheelIcon").offset();
	$('#colorWheel').toggle().css({
		left:	(position.left  - ($('#colorWheel').outerWidth() /2) + 8),
		top:	(position.top   - ($('#colorWheel').outerHeight()))
	});
}
var changeMainColor = function(color){
	$(".navBar, .highlight").css("background-color",color);
	$("#menuBar").css("border-bottom-color",color);
	$(".quoteMark").css("color",color);
}

