// on page load
$(function() {

	// if hasn't seen intro, show intro and set cookie
	/*if (!$.cookie('hasSeenIntro')) {
		$("#playIntro").click();
		$.cookie('hasSeenIntro', 'true');
	}*/

	// replace main graphic
	$('#main_graphic').flash({
    	src: '/flash/new_for_2009.swf',
    	width: 378,
    	height: 400,
		wmode: 'transparent' },
        { version: 8, update: false }
	);

});