$(document).ready(function(){

	var buff, temp, stop;

	/**** _target="blank" ****/
	buff = $('a').map(function() { return $(this); });
	jQuery.each(buff, function(index, value) {
		temp = value.attr('href');
		if (temp != undefined) {
			stop = temp;
			temp = temp.replace(/http:\/\//, '');
			if (temp != stop) {
				temp = temp.split('/');
				if (temp[0] != window.location.host) value.attr('target', '_blank');
			}
		}
	});
	stop = false;

	/**** podswietlanie na pod-stronach ****/
	buff = $('.menu_lewa a').map(function() { return $(this); });
	jQuery.each(buff, function(index, value) {
		temp = value.attr('href');
		if (temp != undefined) {
			if (temp == tytul+'.html') value.addClass('hov');
		}
	});
	stop = false;

	/**** menu ****/
	$("#oferta").hover(
		function() {
			$('#oferta_l').css("background-color","#1b91bf");
			$("#oferta_podmenu").css("display","block");
		},
		function() {
			$("#oferta_podmenu").css("display","none");
			$('#oferta_l').css("background-color","#00c8f3");
		}
	);
});
