window.addEvent('domready', function()
{
	$$('.goregister').each(function(foo)
	{
		foo.setStyle('cursor', 'pointer');
		foo.addEvent('click', function()
		{
			window.open('/anmelden/', '_self');
		});
	});
	$$('.godownload').each(function(foo)
	{
		foo.setStyle('cursor', 'pointer');
		foo.addEvent('click', function()
		{
			window.open('/download/sexy-bildschirmschoner/', '_self');
		});
	});
	
	$('that_download_button').addEvents(
	{
		'mouseenter': function()
		{
			$('that_download_button').getElement('img:first-child').setStyle('display', 'none');
			$('that_download_button').getElement('img:last-child').setStyle('display', 'block');
		},
		'mouseleave': function()
		{
			$('that_download_button').getElement('img:last-child').setStyle('display', 'none');
			$('that_download_button').getElement('img:first-child').setStyle('display', 'block');
		}
	}).getElement('img:first-child').setStyle('display', 'block');

	var flashvars = {};
	var params = {wmode 	: 'opaque'};
	var attributes = {};
	swfobject.embedSWF("http://www.sq-girls.net/screensvr/previewDownload.swf", "screen_flash_box", "200", "160", "9.0.0","expressInstall.swf", flashvars, params, attributes);
});