jQuery(document).ready(function($) {
	var code = ''
	+'			<style type="text/css">'
	+'				BODY {'
	+'					padding-top: 0;'
	+'				}'
	+'				DIV#A1webring {'
	+'					height: 17px;'
	+'					padding: 5px 10px 5px 10px;'
	+'					background: white;'
	+'					margin: 0 auto;'
	+'					text-align: left;'
	+'					margin-bottom: 5px;'
	+'					font-weight: normal;'
	+'					font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;'
	+'					opacity: 0.5;'
	+'					filter: alpha(opacity=50);'
	+'					-moz-opacity: 0.5;'
	+'					-khtml-opacity: 0.5;'
	+'					border-radius: 0 0 8px 8px;'
	+'					-moz-border-radius: 0 0 8px 8px;'
	+'					-webkit-border-radius: 0 0 8px 8px;'
	+'				}'
	+'				DIV#A1webring A {'
	+'					color: #6d6d6d;'
	+'					text-decoration: none;'
	+'					font-weight: normal;'
	+'					font-size: 10px;'
	+'				}'
	+'				DIV#A1webring A:hover {'
	+'					color: black;'
	+'				}'
	+'			</style>	'

	+'			<div id="A1webring">'
	+'				<a href="http://www.a1media.sk" style="font-weight: bold">A1.media</a> &nbsp;|&nbsp;'
	+'				<a href="http://www.nechnezerem.sk">NechNežerem.sk</a> &nbsp;&middot;&nbsp;'
	+'				<a href="http://www.radioA1.net">Rádio A1</a> &nbsp;&middot;&nbsp;'
	+'				<a href="http://www.biznet.sk">Biznet</a> &nbsp;&middot;&nbsp;'
	+'				<a href="http://www.klikacka.sk">Klikačka</a>'
	+'			</div>';
	
	function detectElementByDomain()
	{
		if (document.domain=='www.radioa1.net') {
			return 'div.wrapper';
		}
		else if (document.domain=='eknizky.sk' || document.domain=='www.eknizky.sk') {
			return 'div#lista';
		}
		else if (document.domain=='www.a1media.sk' || document.domain=='www.nechnezerem.sk' || document.domain=='www.biznet.sk' || document.domain=='www.klikacka.sk' || document.domain=='klikacka.sk') {
			return 'div#page';
		}
	}

	$(detectElementByDomain()).prepend(code);
});

