$.preloadImages("/code/slide/badboys2.jpg");    
$.preloadImages("/code/slide/kusicielka2.jpg");    

$(window).bind('load', function() {
	
	if (location.href.indexOf('page=szkolenia') > 0)
	{
		var id = 's004';
		/*
		if ($.cookie('wl_'+id) != 1)
		{
			$('body').append('<div id="'+id+'" class="slide"><img src="/code/slide/close.gif" onclick="hideSlide(\''+id+'\');" /></div>');
			$('#'+id).css('display', 'inline');
			$('#'+id).css('left', -$('#'+id).innerWidth());
			$('#'+id).css('top', $(window).innerHeight() - $('#'+id).innerHeight() - 5);
			$('#'+id).animate({
				left: ($(window).innerWidth() - $('#'+id).innerWidth() - 25)
			}, 600);
			$.cookie('wl_'+id, 1);
		}
		*/
		id = 's003';
		/*
		if ($.cookie('wl_'+id) != 1)
		{
			$('body').append('<div id="'+id+'" class="slide"><img src="/code/slide/close.gif" onclick="hideSlide(\''+id+'\');" /></div>');
			$('#'+id).css('display', 'inline');
			$('#'+id).css('left', -$('#'+id).innerWidth());
			$('#'+id).css('top', $(window).innerHeight() - $('#'+id).innerHeight() - 5);
			$('#'+id).animate({
				left: 5
			}, 600);
			$.cookie('wl_'+id, 1);
		}
		*/
	}
});

function hideSlide(id) {
	$('#'+id).animate({
	  left: -$('#'+id).innerWidth()-10
	}, 600);
}

