jQuery(function(){
	jQuery("body").append(
		'<div id="sparkle1" class="sparkle"><img alt="" src="/2012/html/sparkleWhite.png" style="border:0px;" /></div>\
		<div id="sparkle2" class="sparkle"><img alt="" src="/2012/html/sparkleWhite.png" style="border:0px;" /></div>\
		<div id="sparkle3" class="sparkle"><img alt="" src="/2012/html/sparkleWhite.png" style="border:0px;" /></div>\
		<div id="sparkle4" class="sparkle"><img alt="" src="/2012/html/sparkleWhite.png" style="border:0px;" /></div>\
		<div id="sparkle5" class="sparkle"><img alt="" src="/2012/html/sparkleWhite.png" style="border:0px;" /></div>\
		<div id="sparkle6" class="sparkle"><img alt="" src="/2012/html/sparkleWhite.png" style="border:0px;" /></div>\
		<div id="sparkle7" class="sparkle"><img alt="" src="/2012/html/sparkleWhite.png" style="border:0px;" /></div>\
		<div id="sparkle8" class="sparkle"><img alt="" src="/2012/html/sparkleWhite.png" style="border:0px;" /></div>\
		<div id="sparkle9" class="sparkle"><img alt="" src="/2012/html/sparkleWhite.png" style="border:0px;" /></div>'
	);
if(parseInt(jQuery.browser.version,10) < 9){
jQuery(".sparkle").css("z-index","-1");
}
	fadeIn(jQuery("#sparkle1"));
	var s2=setTimeout('fadeIn(jQuery("#sparkle2"))',3000),
		s3=setTimeout('fadeIn(jQuery("#sparkle3"))',1500),
		s4=setTimeout('fadeIn(jQuery("#sparkle4"))',2000),
		s5=setTimeout('fadeIn(jQuery("#sparkle5"))',500),
		s6=setTimeout('fadeIn(jQuery("#sparkle6"))',700),
		s7=setTimeout('fadeIn(jQuery("#sparkle7"))',1000),
		s8=setTimeout('fadeIn(jQuery("#sparkle8"))',4000),
		s9=setTimeout('fadeIn(jQuery("#sparkle9"))',333);
});
function fadeIn(thisItem){
	var docWidth = jQuery(document).width() - 50,
		docHeight = jQuery(document).height() - 50,
		xPos = Math.floor(Math.random() * docWidth),
		yPos = Math.floor(Math.random() * docHeight);
	jQuery(thisItem).css({
		"left" : xPos,
		"top" : yPos
	});
	jQuery(thisItem).delay(100).fadeIn("slow",function(){
		fadeOut(thisItem);
	});
}
function fadeOut(thisItem){
	jQuery(thisItem).delay(1500).fadeOut("slow",function(){
		fadeIn(thisItem);
	});
}
