/* Javascript (c) Brice Burgess <bhb@iceburg.net> 2007 - All rights reserved. */

$().ready(function() {
	
	$('div.jqm').jqm({modal: true});
	
	$('#splash img.button').hover(
		function(){
			IBJS.imgSwap(this,'over');
		}, 
		function(){
			IBJS.imgSwap(this,'out');
		});
	
	$('#iceburg').fadeTo(1,0.5).hover(
			function() {
				$(this).src('inc/img/iceburg2.gif').fadeTo('slow',0.8);
			},
			function() {
				$(this).fadeTo('slow',0.5).src('inc/img/iceburg.gif');
			}
		);
		
	$('#splash img.logo').css({opacity:0.5}).hover(
		function(){ 
			if(this.fadeIN)
				return;
			this.fadeIN = true;
			$(this).fadeTo('slow',0.9,function(){this.fadeIN = false;}); 
		},
		function(){ $
			if(this.fadeOUT)
				return;
			this.fadeOUT = true;
			$(this).fadeTo('slow',0.5,function(){this.fadeOUT = false;});
		}
	);
	
});