var mediaDir = '/images/';
var divStronyId='opisStronyDiv';
var wybObraz=null;


// jQuery part
$(document).ready(function() {
	$('.minPage').each(function(index){
		$(this).mouseover(function(){
			$(this).animate({width:160});
			var url = $(this).attr('url');
			var opis = $(this).attr('opis');
			var nazwa = $(this).attr('nazwa');
			$('#opisStronyDiv').html('<b>'+nazwa+'</b> ('+url+') <br /><i>'+opis+'</i>');
		});
		$(this).mouseout(function(){
			$(this).animate({width:128});
			$('#opisStronyDiv').html('');
		});
	});

});








function ReplaceImage(obid, imgsrc) {
	var img = document.getElementById(obid);
	if (img) {
		img.src = mediaDir + imgsrc;
	}
}




