/*  (C) Hradecon | http://hradecon.com   */

$(document).ready(function(){		
	var splash = $('#intro'),
		img = $('#intro img'),
		timeout = parseInt($('#intro a').attr('rel')) * 1000;
	
	if (img.length) {
		img.hide() //Hide it
	       .one('load', function() {
	    	   $(this).show();
	    	   makeDialogSplash(splash);
	       })
	       .each(function() {
	    	   //Cache fix for browsers that don't trigger .load()
	    	   if(this.complete) $(this).trigger('load');
	       });
	} else {
		makeDialogSplash(splash);
	}
	
	if (timeout > 0) {
		setTimeout(function(){destroySplashDialog(splash);}, timeout);
	}
});

function makeDialogSplash(splash) {
	splash.dialog({title: splash.attr('title'), 
		 width: 'auto', 
		 height: 'auto', 
		 draggable: true,
		 modal: true,
		 resizable: false}).html( splash.html() );
}

function destroySplashDialog(splash) {
	splash.dialog('close');
}
