var sirkaPlanku = $('#planek').width();

$('#planek').click(function(){
	if(sirkaPlanku == 300){
		sirkaPlanku = 737;
		$(this).css({
			'position': 'fixed',
			'top': '50px',
			'left': '50%',
			'z-index': '1000',
			'width': '737',
			'height': '737',
			'margin-left': '-405px'
		});
	}else{
		sirkaPlanku = 300;
		$(this).css({
			'position': 'static',
			'width': '300',
			'height': '300',
			'margin-left': '0'
		});
	}
});
