

/*
laddar swf, tonar in, väntar, tonar ut, tar bort sfw, repetera
*/
function startCitatFlash(){
	$.fn.delay = function(time, callback){
		// Empty function:
		jQuery.fx.step.delay = function(){};
		// Return meaningless animation, (will be added to queue)
		return this.animate({delay:1}, time, callback);
	}
	$("#flashcitat").html("<div id='flash'><\/div>");

	$("#flash").flash({ 
		src: '/javascript/citat/citat.swf', 
		width: 260, 
		height: 310, 
		flashvars: { foo: Math.round(Math.random() * 99999), xmlfile: '/jsp/quotes_xml_export.xml.jsp', link: '/citat'},
		wmode: 'transparent' 
	}); 
	

}

$(document).ready(function() {
	
	startCitatFlash();
});


