$(document).ready(function() {
	var iframe = document.createElement('IFRAME');
	$(iframe).attr('src', 'http://www.emuni.si/bar/glava.php');
	$(iframe).css({'width':'100%', 'height':'23px', 'min-height':'23px', 'border':'none'});
	$(iframe).attr('id', 'ti_frame');
	$(iframe).attr('frameBorder', '0');
	$('body').prepend(iframe);
	$('body').css('backgroundPosition', '0px 23px');
	$(iframe).load(function() {
			return;
		var headbar = $('#ti_frame').contents().find('#ti_header').parent();
		var headstyle = $('#ti_frame').contents().find('head');
		$('head').prepend(headstyle.children()[0]);
		test = headstyle;
		$('body').prepend(headbar);
	});
});
