rainbows.init({
		selector: 'h1, h2',

		gradient: true,
		from: '#eeeeee',
		to: '#6e6e6e',
				
		shadow: true,
		highlight: false
	});


jQuery(document).ready(function($) {
	// Stuff to do as soon as the DOM is ready
	$('h3').prepend('<span></span>');
	
	
	
});

