$(document).ready(function() {



		$('.flash').hover(
			function(){
				$(this).animate({ color: '#fff4c6' }, 100).animate({ color: '#ffcc00' }, 400); },
			function(){
				var currentclass = $(this).attr('class'); var col1 = '#FFFFFF'; var col2 = '#4B5059';
				if(currentclass=='active'){ col1 = '#FFD800'; var col2 = '#FFFFFF'; };
				$(this).animate({ backgroundColor: col1, color: col2 }, 1000);
			}
		);		
		
		
		
				
		$(function(){
			$('.draggable').draggable();
		})
});


