

jQuery(document).ready(function() {

	var url = window.location+"";
	url = url.replace(/(http:\/\/|dev.mayoka.hu\/)/g, "");
	
	if( url.charAt(url.length-1) == "/" ) {
		url = url.substr(0, url.length-1);
	}

	jQuery("#url").html(url);

	jQuery("#logo-pic").picfix({
		onerror: function () {
			jQuery("#weboldal-logo").hide();
			jQuery("#url").attr("class", "url_full");
		}
	});


});


