jQuery(function( $ ){
	/***** CONFIGURATION *****/
	/*var itemsSelector = 'div.left li',//matches the elements that should blink
		toggle = false,//if false, the image only blinks for a moment
		interval = 500,//how often to change one item (milliseconds)
		duration = 600,//duration of the fade transition
		off = 0.6,//opacity when off
		on = 1;//opacity when on	
	/** END OF CONFIGURATION**/
	
	/*var $items = $(itemsSelector),
		ceil = $items.length - 1;
	
	if( ceil < 1 ) return;//just one or two, don't blink
	
	var timer = setInterval(function(){
		var index = Math.round( Math.random() * ceil );
			$item = $items.eq(index);
			opac  = parseFloat($item.css('opacity'));
			
		if( isNaN(opac) || opac == 0.9999 )
			opac = 1;		
		$item.fadeTo(duration, opac==off?on:off);
		
		if( !toggle )
			$item.fadeTo(duration, opac==off?off:on);
		
	}, interval );*/
});
