$(function(){
	var viewflash = $('<p id="viewflash"><a href="#viewflash">&gt; Flash Version</a></p>');
	$('#header').append(viewflash).css('position', 'relative');
	$('#viewflash').css({
		'position': 'absolute',
		'right': 20,
		'margin-top': '-25px',
		'text-indent': 0,
		'font-size': '11px',
		'font-weight': 'bold'
	});
	
	$('#viewflash a').click(function(){
		$.cookie('mode', 'flash', {expires: 30, domain: '.jetgraph.com', path: '/'});
		location.href = flashurl;
		return false;
	});
});
