jQuery(function(){
	var container = jQuery('<div />');
	container.addClass('skip_intro_container')
	jQuery('.page').prepend(container);
	jQuery('.page').css({'position':'relative'});

	container.append(jQuery('#footer .skip_intro'));

	var headerContainer = jQuery('.page');
	var x = headerContainer.offset().left;
	var y = headerContainer.offset().top;
	x += + 525;
	y += + 550;

	var skipButton = jQuery('.skip_intro_container .skip_intro');
	skipButton.css({
		'position' 	: 'absolute',
		'bottom'	: 40,
		'right'		: 10,
		'z-index'	: 9999
	});

	if(jQuery.browser.msie == true && jQuery.browser.version < 8){
		skipButton.css({'bottom':50});
	}

	skipButton.find('img').bind('mouseover',function(){
		jQuery(this).attr('src','fileadmin/templates/flash/Skip_over.png');
	});
	skipButton.find('img').bind('mouseout',function(){
		jQuery(this).attr('src','fileadmin/templates/flash/Skip.png');
	});



});