

$( function(){
	var type = true;
	var embed = function(){
		var swf = type ? 'swf/QRCodeType.swf' : 'swf/QRCodeClock.swf';
		swfobject.embedSWF(swf,'qrtype','700','700','9.0.0');
		type=!type;
	}
	$('#easter').click(function(){
		embed();
		return false;
	});
	embed();
});