// Some JS specific to LondonBellyDancer.

function InitLondonBellyDancer(){
	// Handle transparency issue with PNG image in the menu - IE6 has an issue with this.
	// See http://allinthehead.com/retro/338/supersleight-jquery-plugin for source of plugin.
	$('#menu').supersleight({shim: '/static/transparent.gif'});
	
	// Fade in images.
	$(".fadeIn").fadeOut(2000);
	$(".fadeIn").fadeIn(4000);
	
	
};

