function spriteyMainMenu(){
	if($('ul#mMSpritey').length > 0) {
		$('ul#mMSpritey li ul').css({ 'display' : 'none' }); // Opera Fix
		$("ul#mMSpritey>li>a>span").css({ 'opacity': "0", 'display': "block" });
	
		$('ul#mMSpritey>li').hover(function(){
			$(this).siblings().find('ul').stop(true,true).css({ 'display' : 'none' });
			$(this).find('ul:first:hidden').css({ 'visibility' : 'visible', 'display' : 'none' }).slideDown(200);
			$(this).children('a').children('span').fadeTo(50, 1.0);
		}, function(){
			$(this).find('ul:first').stop(true,true).css({ 'display' : 'none' });
			$(this).children('a').children('span').fadeTo(500, 0.0);
		});
		$('ul#mMSpritey>li ul li').hover(function(){
			$(this).siblings().find('ul').stop(true,true).css({ 'display' : 'none' });
			$(this).find('ul:first:hidden').css({ 'visibility' : 'visible', 'display' : 'none' }).slideDown(200);
		}, function(){
			$(this).find('ul:first').stop(true,true).css({ 'display' : 'none' });
		});
	}
}

/*

function textyMainMenu(){
	if($('ul#mainMenu').length > 0) {
		$('ul#mainMenu li ul').css({ 'display' : 'none' }); // Opera Fix
	
		$('ul#mainMenu li').hover(function(){
			$(this).siblings().find('ul').stop(true,true).css({ 'display' : 'none' });
			$(this).find('ul:first:hidden').css({ 'visibility' : 'visible', 'display' : 'none' }).slideDown(200);
		}, function(){
			$(this).find('ul:first').stop(true,true).css({ 'display' : 'none' });
		});
	}
}

*/

function replaceH1s() {
	$("h1").each(function(){
		h1name = $(this).text();
		stuff = h1name.toLowerCase().replace(/ /g, '-');
		$(this).html('<img src="/assets/image/h1_' + stuff + '.png" alt="' + h1name + '" />');
	})
}

$(document).ready(function(){
	// when all code loads
	spriteyMainMenu();
	// if ($.browser.msie && $.browser.version<="9.0") DD_roundies.addRule('#contentWrapper', '0 0 15px 150px');
	// if (!($.browser.msie && $.browser.version<="6.0")) replaceHeading(); 
	// if( $('#gallerySlideSling').length) $("a.slideLinky").fancybox({'transitionIn' : 'none' , 'transitionOut' : 'none' , 'overlayOpacity' : '0.5' , 'titleShow' : 'false' });	


	//fancybox
	$(".popup").fancybox({
		'titlePosition'		: 'inside',
		'transitionIn'		: 'elastic',
		'transitionOut'		: 'elastic'
	});

	$('#contentSlider').cycle({
		fx: 'fade',
		speed: 450,
		timeout: 0,
		pager: '#contentSliderControls',
		pagerEvent: 'click',
		cleartypeNoBg: true,
		pagerAnchorBuilder: function(idx, slide) {
			// return selector string for existing anchor
			return '#contentSliderControls a:eq(' + idx + ')';
		}
	});
	
	if ($('h1').length > 0) replaceH1s();

});

$(window).load(function(){
	// when images all load
	if ($('#bubbles').length > 0 && !($.browser.msie && $.browser.version<="6.0")) {
		$('#bubbles').cycle({
		    fx: 'custom',
		    cleartypeNoBg: true, //fixes body color showing through on IE
		    cssBefore: {
		    	top: 250,
		    	left: 300,
		        width: 0, 
		        height: 0
		    }, 
		    animIn:  {
		    	top: 0,
		    	left: 0,
		        width: 300, 
		        height: 250  
		    }, 
		    animOut: {
		    	top: 250,
		    	left: 300,
		        width: 0, 
		        height: 0
		    }, 
		    cssAfter: {
		        display: 'none'
		    }, 
		    delay: -1000
		});
	}
});


