File: //var/www/wintergenomics_site_bak/wp-content/themes/radcliffe/js/theme-customizer.js
/**
 * This file adds some LIVE to the Theme Customizer live preview. To leverage
 * this, set your custom settings to 'postMessage' and then add your handling
 * here. Your javascript should grab settings from customizer controls, and 
 * then make any necessary changes to the page using jQuery.
 */
( function( $ ) {
	//Update site accent color in real time...
	wp.customize( 'accent_color', function( value ) {
		value.bind( function( newval ) {
			$('.post-title a:hover').css('color', newval );
			$('.widget-content a').css('color', newval );
			$('.main-menu a:hover').css('background', newval );
		} );
	} );
	
} )( jQuery );