

$(document).ready(function(){
	
});


function showStateInfo(el){
	//alert($(el).attr('title'));
	
	
	var width = '100px';
	var height = '100px';
	var pad_l = '300px';
	var pad_t = '100px';
	var box = $('<div style="background:#eee; position:absolute; left:'+pad_l+'; top:'+pad_t+'; width:'+width+'; height:'+height+';"></div>').addClass('state_info');
	//box.style('background:#eee; position:absolute; left:'+pad_l+'; top:'+pad_t+'; width:'+width'; height:'+height';');
	var info = 'Informacja testowa';
	box.append(info);
	$('body').append(box);
	box.fadeIn();
}


function hide(el){
	
	$(el).fadeOut();
	$(el).remove();
}
